Shortcuts

Source code for mmdet3d.models.detectors.fcos_mono3d

# Copyright (c) OpenMMLab. All rights reserved.
from mmdet.models.builder import DETECTORS
from .single_stage_mono3d import SingleStageMono3DDetector


[docs]@DETECTORS.register_module() class FCOSMono3D(SingleStageMono3DDetector): r"""`FCOS3D <https://arxiv.org/abs/2104.10956>`_ for monocular 3D object detection. Currently please refer to our entry on the `leaderboard <https://www.nuscenes.org/object-detection?externalData=all&mapData=all&modalities=Camera>`_. """ # 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)
Read the Docs v: v0.17.3
Versions
latest
stable
v0.17.3
v0.17.2
v0.17.1
v0.17.0
v0.16.0
v0.15.0
v0.14.0
v0.13.0
v0.12.0
v0.11.0
v0.10.0
v0.9.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.