Skip to content

Commit

Permalink
Nanoのモデルのリンク切れ問題の修正 #14
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Ojii committed Jan 7, 2024
1 parent 0e57cff commit 65b7c80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ AviUtlのフィルタメニューに"MotionTracking MK-II Plus"が追加され
をダウンロードし、`aviutl.exeと同じディレクトリ`に置いてください。

### Method 6 (Nano)用
[こちらのURL](https://github.com/HonglinChu/SiamTrackers/tree/8211ff3f862fc68a870dde1ab00451f35af3b1d4/NanoTrack/models/nanotrackv2)より
[こちらのURL](https://github.com/HonglinChu/SiamTrackers/tree/18b7791360acb3f6d276d47376a6f1ed516f1628/NanoTrack/models/nanotrackv2)より

- nanotrack_backbone.onnx
- nanotrack_head.onnx
- nanotrack_backbone_sim.onnx
- nanotrack_head_sim.onnx

をダウンロードし、`aviutl.exeと同じディレクトリ`に置いてください。

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ Additional work is required if Methods 4, 5, or 6 are to be used.
2. Dump each files into `AviUtl's root folder`

### For Method 6 (Nano)
1. Download the following file from [this URL](https://github.com/HonglinChu/SiamTrackers/tree/211ff3f862fc68a870dde1ab00451f35af3b1d4/NanoTrack/models/nanotrackv2)
1. Download the following file from [this URL](https://github.com/HonglinChu/SiamTrackers/tree/18b7791360acb3f6d276d47376a6f1ed516f1628/NanoTrack/models/nanotrackv2)

- nanotrack_backbone.onnx
- nanotrack_head.onnx
- nanotrack_backbone_sim.onnx
- nanotrack_head_sim.onnx

2. Dump each files into `AviUtl's root folder`

Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,8 +510,8 @@ BOOL func_WndProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam, void *e
case 5:
{
auto params = cv::TrackerNano::Params();
params.backbone = "nanotrack_backbone.onnx";
params.neckhead = "nanotrack_head.onnx";
params.backbone = "nanotrack_backbone_sim.onnx";
params.neckhead = "nanotrack_head_sim.onnx";
tracker = cv::TrackerNano::create(params);
break;
}
Expand Down

0 comments on commit 65b7c80

Please sign in to comment.