__init__.py 882 Bytes
Newer Older
1
from .boxes import nms, batched_nms, remove_small_boxes, clip_boxes_to_image, box_area, box_iou
eellison's avatar
eellison committed
2
from .new_empty_tensor import _new_empty_tensor
3
from .deform_conv import deform_conv2d, DeformConv2d
4
5
from .roi_align import roi_align, RoIAlign
from .roi_pool import roi_pool, RoIPool
6
7
from .ps_roi_align import ps_roi_align, PSRoIAlign
from .ps_roi_pool import ps_roi_pool, PSRoIPool
8
9
from .poolers import MultiScaleRoIAlign
from .feature_pyramid_network import FeaturePyramidNetwork
10

11
12
13
14
from ._register_onnx_ops import _register_custom_op

_register_custom_op()

15
16

__all__ = [
17
18
    'deform_conv2d', 'DeformConv2d', 'nms', 'batched_nms', 'remove_small_boxes',
    'clip_boxes_to_image', 'box_area', 'box_iou', 'roi_align', 'RoIAlign', 'roi_pool',
19
20
    'RoIPool', '_new_empty_tensor', 'ps_roi_align', 'PSRoIAlign', 'ps_roi_pool',
    'PSRoIPool', 'MultiScaleRoIAlign', 'FeaturePyramidNetwork'
21
]