Functionobject_label_to_box_3dTurns an ObjectLabel into an box_3d Args: obj_label: ObjectLabel Returns: anchor: 3D box in box_3d format [x, y, z, l, w, h,
avod/core/box_3d_encoder.py:36
Functionproject_to_bev Projects an array of 3D boxes into bird's eye view Args: boxes_3d: list of 3d boxes in the format: N x [x, y, z, l, w, h
avod/core/box_3d_projector.py:14
Functionproject_to_image_space Projects 3D anchors into image space Args: anchors: list of anchors in anchor format N x [x, y, z, dim_x, dim_y, dim_z]
avod/core/anchor_projector.py:72
Functionreorder_projected_boxesHelper function to reorder image corners. This reorders the corners from [x1, y1, x2, y2] to [y1, x1, y2, x2] which is required by the tf.cro
avod/core/anchor_projector.py:254