class Object3D
W&B class for 3D point clouds.
method Object3D.__init__
data_or_path: Object3D can be initialized from a file or a numpy array.caption: Caption associated with the object for display.
Object3DObject3D.__init____init__(
data_or_path: Union[ForwardRef('np.ndarray'), str, pathlib.Path, ForwardRef('TextIO'), dict],
caption: Optional[str] = None,
**kwargs: Optional[str, ForwardRef('FileFormat3D')]
) → None
data_or_path: Object3D can be initialized from a file or a numpy array.caption: Caption associated with the object for display.[[x y z], ...] nx3
[[x y z c], ...] nx4 where c is a category with supported range [1, 14]
[[x y z r g b], ...] nx6 where is rgb is color
Was this page helpful?