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: stable
Versions
latest
stable
1.x
v1.0.0rc0
v0.3.4
v0.3.3
v0.3.2
v0.3.1
v0.3.0
v0.2.0
v0.1.1
v0.1.0
main
dev
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.