__init__.py 278 Bytes
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
2
from .cylinder3d_head import Cylinder3DHead
3
from .dgcnn_head import DGCNNHead
4
from .paconv_head import PAConvHead
5
6
from .pointnet2_head import PointNet2Head

7
__all__ = ['PointNet2Head', 'DGCNNHead', 'PAConvHead', 'Cylinder3DHead']