-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] support occluded metric (#9710)
- Loading branch information
Showing
10 changed files
with
564 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .cityscapes_metric import CityScapesMetric | ||
from .coco_metric import CocoMetric | ||
from .coco_occluded_metric import CocoOccludedSeparatedMetric | ||
from .coco_panoptic_metric import CocoPanopticMetric | ||
from .crowdhuman_metric import CrowdHumanMetric | ||
from .dump_det_results import DumpDetResults | ||
from .dump_proposals_metric import DumpProposals | ||
from .lvis_metric import LVISMetric | ||
from .openimages_metric import OpenImagesMetric | ||
from .voc_metric import VOCMetric | ||
|
||
__all__ = [ | ||
'CityScapesMetric', 'CocoMetric', 'CocoPanopticMetric', 'OpenImagesMetric', | ||
'VOCMetric', 'LVISMetric', 'CrowdHumanMetric', 'DumpProposals' | ||
'VOCMetric', 'LVISMetric', 'CrowdHumanMetric', 'DumpProposals', | ||
'CocoOccludedSeparatedMetric', 'DumpDetResults' | ||
] |
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.