__init__.py 1.02 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
# Copyright (c) OpenMMLab. All rights reserved.
from .indoor_eval import (average_precision, eval_det_cls, eval_map_recall,
                          indoor_eval)
from .instance_seg_eval import (aggregate_predictions, instance_seg_eval,
                                rename_gt)
from .kitti_utils import do_eval, kitti_eval, kitti_eval_coco_style
from .lyft_eval import (get_classwise_aps, get_single_class_aps, load_lyft_gts,
                        load_lyft_predictions, lyft_eval)
from .scannet_utils import evaluate_matches, scannet_eval
from .seg_eval import fast_hist, get_acc, get_acc_cls, per_class_iou, seg_eval

__all__ = [
    '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', 'kitti_eval', 'kitti_eval_coco_style',
    'scannet_eval', 'evaluate_matches', 'do_eval'
]