Shortcuts

Source code for mmdet3d.models.detectors.ssd3dnet

# Copyright (c) OpenMMLab. All rights reserved.
from mmdet.models import DETECTORS
from .votenet import VoteNet


[docs]@DETECTORS.register_module() class SSD3DNet(VoteNet): """3DSSDNet model. https://arxiv.org/abs/2002.10187.pdf """ def __init__(self, backbone, bbox_head=None, train_cfg=None, test_cfg=None, init_cfg=None, pretrained=None): super(SSD3DNet, self).__init__( backbone=backbone, bbox_head=bbox_head, train_cfg=train_cfg, test_cfg=test_cfg, init_cfg=init_cfg, pretrained=pretrained)
Read the Docs v: v0.17.2
Versions
latest
stable
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.