Get the bounding box of the object. Args: obj_name: name of the object Returns: bbox: np.ndarray, [x_min, y_min, z_min, x_max, y_max, z_max]
(self, obj_name: str)
| 88 | raise NotImplementedError("get_object_center_position() not implemented") |
| 89 | |
| 90 | def get_3d_bbox(self, obj_name: str)-> ArrayLike: |
| 91 | """ |
| 92 | Get the bounding box of the object. |
| 93 | Args: |
| 94 | obj_name: name of the object |
| 95 | Returns: |
| 96 | bbox: np.ndarray, [x_min, y_min, z_min, x_max, y_max, z_max] |
| 97 | """ |
| 98 | raise NotImplementedError("get_3d_bbox() not implemented") |
| 99 | |
| 100 | def get_object_joints_axes(self, obj_name: str)->List: |
| 101 | """ |
no outgoing calls
no test coverage detected