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.

reppoints_detector.py 784 B

2 years ago
123456789101112131415161718192021222324
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from ..builder import DETECTORS
  3. from .single_stage import SingleStageDetector
  4. @DETECTORS.register_module()
  5. class RepPointsDetector(SingleStageDetector):
  6. """RepPoints: Point Set Representation for Object Detection.
  7. This detector is the implementation of:
  8. - RepPoints detector (https://arxiv.org/pdf/1904.11490)
  9. """
  10. def __init__(self,
  11. backbone,
  12. neck,
  13. bbox_head,
  14. train_cfg=None,
  15. test_cfg=None,
  16. pretrained=None,
  17. init_cfg=None):
  18. super(RepPointsDetector,
  19. self).__init__(backbone, neck, bbox_head, train_cfg, test_cfg,
  20. pretrained, init_cfg)

No Description

Contributors (2)