__init__.py 1.35 KB
Newer Older
zhangshilong's avatar
zhangshilong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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,
                         load_lyft_predictions, lyft_eval, per_class_iou,
                         rename_gt, seg_eval)
from .metrics import (IndoorMetric, InstanceSegMetric, KittiMetric, LyftMetric,
                      NuScenesMetric, SegMetric)

__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',
    'eval_class', 'do_eval'
]