# Copyright (c) OpenMMLab. All rights reserved. from ..builder import DETECTORS from .single_stage_mono3d import SingleStageMono3DDetector @DETECTORS.register_module() class FCOSMono3D(SingleStageMono3DDetector): r"""`FCOS3D `_ for monocular 3D object detection. Currently please refer to our entry on the `leaderboard `_. """ # noqa: E501 def __init__(self, backbone, neck, bbox_head, train_cfg=None, test_cfg=None, pretrained=None): super(FCOSMono3D, self).__init__(backbone, neck, bbox_head, train_cfg, test_cfg, pretrained)