__init__.py 319 Bytes
Newer Older
1
# Copyright (c) OpenMMLab. All rights reserved.
2
3
4
from .furthest_point_sample import (furthest_point_sample,
                                    furthest_point_sample_with_dist)
from .points_sampler import Points_Sampler
wuyuefeng's avatar
wuyuefeng committed
5

6
7
8
9
__all__ = [
    'furthest_point_sample', 'furthest_point_sample_with_dist',
    'Points_Sampler'
]