Skip to content

Commit

Permalink
表記ゆれの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Ojii committed Apr 30, 2024
1 parent f5ec40b commit 178d499
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
cmake --build opencv/build --config Release
cmake --install opencv/build
- name: Build MotionTracking_MKII_Plus
- name: Build MotionTracking_MK-II_Plus
run: |
cmake -S src -B src/build -D CMAKE_GENERATOR_PLATFORM=Win32 -D OPENCV_INCLUDE_DIR=opencv/build/install/include -D OPENCV_LIBRARY_DIR=opencv/build/install/x86/vc17/staticlib
cmake --build src/build --config Release
- name: Create Archive
run: |
cd ${{ github.workspace }}
move LICENSE Licenses/MotionTracking_MKII.txt
move LICENSE Licenses/MotionTrackingMKII.txt
move opencv/LICENSE Licenses/opencv.txt
move opencv_contrib/LICENSE Licenses/opencv_contrib.txt
move src/build/Release/MotionTrackingMKIIPlus.auf MotionTrackingMKIIPlus.auf
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: MotionTracking_MKII_Plus
name: MotionTrackingMKIIPlus
path: ${{ github.workspace }}/MotionTrackingMKIIPlus.zip

create_release:
Expand All @@ -55,7 +55,7 @@ jobs:

- uses: actions/download-artifact@v4
with:
name: MotionTracking_MKII_Plus
name: MotionTrackingMKIIPlus
path: artifacts

- name: Create a Release
Expand Down
6 changes: 3 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MotionTracking_MKII_Plus
# MotionTracking MK-II Plus
AviUtlでオブジェクトトラッキングを行うプラグイン


Expand Down Expand Up @@ -93,11 +93,11 @@ CJKファイル名もサポートされています。


## ソースからのビルド
1. `git clone https://github.com/Mr-Ojii/MotionTracking_MKII_Plus.git`を実行
1. `git clone https://github.com/Mr-Ojii/MotionTracking_MK-II_Plus.git`を実行
2. OpenCV 4.9.0 を静的ライブラリとしてビルド(DebugとRelease両方)
3. `src/CMakeLists.txt`よりVSのプロジェクトを生成
4. Visual Studioを用いてビルド


## バグ報告
* [GitHub](https://github.com/Mr-Ojii/MotionTracking_MKII_Plus)
* [GitHub](https://github.com/Mr-Ojii/MotionTracking_MK-II_Plus)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MotionTracking_MKII_Plus
# MotionTracking MK-II Plus
AviUtl object tracking (rubbish) plugin based on LKT/optical flow. Use OpenCV 4.9.0 or newer.


Expand Down Expand Up @@ -94,10 +94,10 @@ Support CJK filename


## Building From Source
1. Run `git clone https://github.com/Mr-Ojii/MotionTracking_MKII_Plus.git`
1. Run `git clone https://github.com/Mr-Ojii/MotionTracking_MK-II_Plus.git`
2. Build your own OpenCV 4.9.0 STATIC (Both Debug and Release builds)
3. Generate VS project file from src/CMakeLists.txt
4. Build with Visual Studio

## Bug Report
* [GitHub](https://github.com/Mr-Ojii/MotionTracking_MKII_Plus)
* [GitHub](https://github.com/Mr-Ojii/MotionTracking_MK-II_Plus)
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ BOOL func_WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam, void *e
"正常な結果が得られない可能性があります。\n"
"リサイズを無効化することをお勧めします。\n"
"Analyzeを続行しますか?"
, "MotionTracking MKII Plus", MB_ICONWARNING | MB_YESNO);
, "MotionTracking MK-II Plus", MB_ICONWARNING | MB_YESNO);
if (res == IDNO) {
return FALSE;
}
Expand Down

0 comments on commit 178d499

Please sign in to comment.