-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
8 changed files
with
1,198 additions
and
1,040 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,19 @@ | ||
_target_: tracklab.visualization.VisualizationEngine | ||
save_videos: True | ||
visualizers: | ||
test: | ||
_target_: tracklab.visualization.DefaultDetectionVisualizer | ||
# ellipse: | ||
# _target_: tracklab.visualization.EllipseDetectionVisualizer | ||
track_line: | ||
_target_: tracklab.visualization.TrackingLineVisualizer | ||
|
||
colors: | ||
bbox: | ||
no_id: [0,0,0] | ||
prediction: null | ||
ground_truth: [0,0,0] | ||
text: | ||
no_id: [0,0,0] | ||
prediction: null | ||
ground_truth: [0,0,0] |
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,5 +1,5 @@ | ||
# from .mmdetection_api import MMDetection | ||
# from .bottomup_mmpose_api import BottomUpMMPose | ||
from .openpifpaf_api import OpenPifPaf | ||
# from .openpifpaf_api import OpenPifPaf # FIXME : removed until dependency problem is fixed | ||
from .yolov8_api import YOLOv8 | ||
from .yolov8_pose_api import YOLOv8Pose |
Empty file.
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,11 @@ | ||
import pycocotools | ||
|
||
from tracklab.core import Evaluator | ||
|
||
|
||
class SoccerAccuracy(Evaluator): | ||
def __init__(self, eval_set, *args, **kwargs): | ||
self.eval_set = eval_set | ||
|
||
def run(self, tracker_state): | ||
pycocotools |