Skip to content

Commit

Permalink
[Feature] Add MonoFlex Coder (#1115)
Browse files Browse the repository at this point in the history
* add monoflex coder

* fix coder

* fix comments

* change variable name

* fix typos

* put encode alpha in coder

* change variable name

* change alpha to local yaw

* fix roty to yaw

* fix annotations

* fix comments

* fix return elements

* fix comments

* fix comments
  • Loading branch information
ZCMax authored Jan 5, 2022
1 parent 6d781bd commit c19ce85
Show file tree
Hide file tree
Showing 2 changed files with 517 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mmdet3d/core/bbox/coders/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from .delta_xyzwhlr_bbox_coder import DeltaXYZWLHRBBoxCoder
from .fcos3d_bbox_coder import FCOS3DBBoxCoder
from .groupfree3d_bbox_coder import GroupFree3DBBoxCoder
from .monoflex_bbox_coder import MonoFlexCoder
from .partial_bin_based_bbox_coder import PartialBinBasedBBoxCoder
from .pgd_bbox_coder import PGDBBoxCoder
from .point_xyzwhlr_bbox_coder import PointXYZWHLRBBoxCoder
Expand All @@ -13,5 +14,6 @@
__all__ = [
'build_bbox_coder', 'DeltaXYZWLHRBBoxCoder', 'PartialBinBasedBBoxCoder',
'CenterPointBBoxCoder', 'AnchorFreeBBoxCoder', 'GroupFree3DBBoxCoder',
'PointXYZWHLRBBoxCoder', 'FCOS3DBBoxCoder', 'PGDBBoxCoder', 'SMOKECoder'
'PointXYZWHLRBBoxCoder', 'FCOS3DBBoxCoder', 'PGDBBoxCoder', 'SMOKECoder',
'MonoFlexCoder'
]
Loading

0 comments on commit c19ce85

Please sign in to comment.