You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 485 B

3 years ago
12345678910
  1. # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
  2. from .boxes import Boxes, BoxMode, pairwise_iou
  3. from .image_list import ImageList
  4. from .instances import Instances
  5. from .keypoints import Keypoints, heatmaps_to_keypoints
  6. from .masks import BitMasks, PolygonMasks, rasterize_polygons_within_box
  7. from .rotated_boxes import RotatedBoxes
  8. from .rotated_boxes import pairwise_iou as pairwise_iou_rotated
  9. __all__ = [k for k in globals().keys() if not k.startswith("_")]

No Description