Shortcuts

Source code for mmrotate.models.detectors.rotated_reppoints

# Copyright (c) OpenMMLab. All rights reserved.
from ..builder import ROTATED_DETECTORS
from .single_stage import RotatedSingleStageDetector


[docs]@ROTATED_DETECTORS.register_module() class RotatedRepPoints(RotatedSingleStageDetector): """Implementation of Rotated RepPoints.""" def __init__(self, backbone, neck, bbox_head, train_cfg=None, test_cfg=None, pretrained=None): super(RotatedRepPoints, self).__init__(backbone, neck, bbox_head, train_cfg, test_cfg, pretrained)
Read the Docs v: v0.2.0
Versions
latest
stable
v0.2.0
v0.1.1
v0.1.0
main
dev
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.