__init__.py 2.4 KB
Newer Older
dingchang's avatar
dingchang committed
1
# Copyright (c) OpenMMLab. All rights reserved.
zhangwenwei's avatar
zhangwenwei committed
2
3
from mmcv.ops import (RoIAlign, SigmoidFocalLoss, get_compiler_version,
                      get_compiling_cuda_version, nms, roi_align,
zhangwenwei's avatar
zhangwenwei committed
4
5
                      sigmoid_focal_loss)

wuyuefeng's avatar
wuyuefeng committed
6
from .ball_query import ball_query
7
from .dgcnn_modules import DGCNNFAModule, DGCNNFPModule, DGCNNGFModule
8
9
from .furthest_point_sample import (Points_Sampler, furthest_point_sample,
                                    furthest_point_sample_with_dist)
wuyuefeng's avatar
wuyuefeng committed
10
from .gather_points import gather_points
wuyuefeng's avatar
wuyuefeng committed
11
12
from .group_points import (GroupAll, QueryAndGroup, group_points,
                           grouping_operation)
wuyuefeng's avatar
wuyuefeng committed
13
from .interpolate import three_interpolate, three_nn
14
from .knn import knn
zhangwenwei's avatar
zhangwenwei committed
15
from .norm import NaiveSyncBatchNorm1d, NaiveSyncBatchNorm2d
16
from .paconv import PAConv, PAConvCUDA, assign_score_withk
17
18
19
from .pointnet_modules import (PAConvCUDASAModule, PAConvCUDASAModuleMSG,
                               PAConvSAModule, PAConvSAModuleMSG,
                               PointFPModule, PointSAModule, PointSAModuleMSG,
20
                               build_sa_module)
21
22
from .roiaware_pool3d import (RoIAwarePool3d, points_in_boxes_all,
                              points_in_boxes_cpu, points_in_boxes_part)
wuyuefeng's avatar
wuyuefeng committed
23
24
from .sparse_block import (SparseBasicBlock, SparseBottleneck,
                           make_sparse_convmodule)
zhangwenwei's avatar
zhangwenwei committed
25
26
27
from .voxel import DynamicScatter, Voxelization, dynamic_scatter, voxelization

__all__ = [
28
29
30
31
    'nms', 'soft_nms', 'RoIAlign', 'roi_align', 'get_compiler_version',
    'get_compiling_cuda_version', 'NaiveSyncBatchNorm1d',
    'NaiveSyncBatchNorm2d', 'batched_nms', 'Voxelization', 'voxelization',
    'dynamic_scatter', 'DynamicScatter', 'sigmoid_focal_loss',
wuyuefeng's avatar
wuyuefeng committed
32
    'SigmoidFocalLoss', 'SparseBasicBlock', 'SparseBottleneck',
33
    'RoIAwarePool3d', 'points_in_boxes_part', 'points_in_boxes_cpu',
34
    'make_sparse_convmodule', 'ball_query', 'knn', 'furthest_point_sample',
35
36
37
    'furthest_point_sample_with_dist', 'three_interpolate', 'three_nn',
    'gather_points', 'grouping_operation', 'group_points', 'GroupAll',
    'QueryAndGroup', 'PointSAModule', 'PointSAModuleMSG', 'PointFPModule',
38
39
40
41
42
    'DGCNNFPModule', 'DGCNNGFModule', 'DGCNNFAModule', 'points_in_boxes_all',
    'get_compiler_version', 'assign_score_withk', 'get_compiling_cuda_version',
    'Points_Sampler', 'build_sa_module', 'PAConv', 'PAConvCUDA',
    'PAConvSAModuleMSG', 'PAConvSAModule', 'PAConvCUDASAModule',
    'PAConvCUDASAModuleMSG'
zhangwenwei's avatar
zhangwenwei committed
43
]