-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Support TrackingNet dataset in SOT (#268)
* init doc * update zh-CN docs * fix some translation error * fix some translation error * add a blank between English and Chinese * fix some translation error * fix zh-CN docs * fix zh-CN docs * support uav * support trackingnet * simplify uav config * tiny changes in sot_siamrpn_params_search.py * add sot_test_dataset.py * refactor sot test dataset class * update siamrpn README.md * [wip]uav unittest * tiny changes in sot unittest * init trackinget * fix docstring * convert uav to uav123 * add ignore key for evaluation * fix docstring * fix docstring and rename file * remove 'ignore' key when converting uav dataset * fix some typos * refactor tools structure * fix docs * trackingnet docs * trackingnet docs * fix error * del ignore * fix typo Co-authored-by: zhangjingwei <zhangjingwei@pjlab.org.cn> Co-authored-by: zhangjingwei <zhangjingwei@sensetime.com>
- Loading branch information
1 parent
1fa9280
commit 5a57163
Showing
36 changed files
with
367 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
_base_ = ['./siamese_rpn_r50_1x_lasot.py'] | ||
|
||
data_root = 'data/' | ||
# dataset settings | ||
data = dict( | ||
test=dict( | ||
type='TrackingNetTestDataset', | ||
ann_file=data_root + | ||
'trackingnet/TEST/annotations/trackingnet_test.json', | ||
img_prefix=data_root + 'trackingnet/TEST/frames')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.