-
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.
Support the testing process of MaskTrack R-CNN (#298)
* Support the testing process of MaskTrack R-CNN * refactor track2result and restore_result functions * fix a typo * fix typos * update docstring of MaskTrack R-CNN * refactor outs2results and results2outs functions * update based on 1-st comments * fix bug * update based on 2nd comments * fix a typo
- Loading branch information
Showing
25 changed files
with
698 additions
and
116 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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .correlation import depthwise_correlation | ||
from .similarity import embed_similarity | ||
from .transforms import imrenormalize, restore_result, track2result | ||
from .transforms import imrenormalize, outs2results, results2outs | ||
|
||
__all__ = [ | ||
'depthwise_correlation', 'track2result', 'restore_result', | ||
'depthwise_correlation', 'outs2results', 'results2outs', | ||
'embed_similarity', 'imrenormalize' | ||
] |
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.