__init__.py 689 Bytes
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
wuyuefeng's avatar
wuyuefeng committed
2
3
from .base_3droi_head import Base3DRoIHead
from .bbox_heads import PartA2BboxHead
encore-zhou's avatar
encore-zhou committed
4
5
from .h3d_roi_head import H3DRoIHead
from .mask_heads import PointwiseSemanticHead, PrimitiveHead
wuyuefeng's avatar
wuyuefeng committed
6
from .part_aggregation_roi_head import PartAggregationROIHead
7
from .point_rcnn_roi_head import PointRCNNRoIHead
8
from .pv_rcnn_roi_head import PVRCNNRoiHead
wuyuefeng's avatar
wuyuefeng committed
9
from .roi_extractors import Single3DRoIAwareExtractor, SingleRoIExtractor
wuyuefeng's avatar
wuyuefeng committed
10

wuyuefeng's avatar
wuyuefeng committed
11
12
__all__ = [
    'Base3DRoIHead', 'PartAggregationROIHead', 'PointwiseSemanticHead',
encore-zhou's avatar
encore-zhou committed
13
    'Single3DRoIAwareExtractor', 'PartA2BboxHead', 'SingleRoIExtractor',
14
    'H3DRoIHead', 'PrimitiveHead', 'PointRCNNRoIHead', 'PVRCNNRoiHead'
wuyuefeng's avatar
wuyuefeng committed
15
]