__init__.py 1.48 KB
Newer Older
zhangshilong's avatar
zhangshilong committed
1
2
3
4
5
6
7
8
# Copyright (c) OpenMMLab. All rights reserved.
from mmdet3d.evaluation.functional.kitti_utils import (do_eval, eval_class,
                                                       kitti_eval,
                                                       kitti_eval_coco_style)
from .functional import (aggregate_predictions, average_precision,
                         eval_det_cls, eval_map_recall, fast_hist, get_acc,
                         get_acc_cls, get_classwise_aps, get_single_class_aps,
                         indoor_eval, instance_seg_eval, load_lyft_gts,
9
10
                         load_lyft_predictions, lyft_eval, panoptic_seg_eval,
                         per_class_iou, rename_gt, seg_eval)
zhangshilong's avatar
zhangshilong committed
11
from .metrics import (IndoorMetric, InstanceSegMetric, KittiMetric, LyftMetric,
12
13
                      NuScenesMetric, PanopticSegMetric, SegMetric,
                      WaymoMetric)
zhangshilong's avatar
zhangshilong committed
14
15
16
17
18
19
20
21
22

__all__ = [
    'kitti_eval_coco_style', 'kitti_eval', 'indoor_eval', 'lyft_eval',
    'seg_eval', 'instance_seg_eval', 'average_precision', 'eval_det_cls',
    'eval_map_recall', 'indoor_eval', 'aggregate_predictions', 'rename_gt',
    'instance_seg_eval', 'load_lyft_gts', 'load_lyft_predictions', 'lyft_eval',
    'get_classwise_aps', 'get_single_class_aps', 'fast_hist', 'per_class_iou',
    'get_acc', 'get_acc_cls', 'seg_eval', 'KittiMetric', 'NuScenesMetric',
    'IndoorMetric', 'LyftMetric', 'SegMetric', 'InstanceSegMetric',
23
24
    'WaymoMetric', 'eval_class', 'do_eval', 'PanopticSegMetric',
    'panoptic_seg_eval'
zhangshilong's avatar
zhangshilong committed
25
]