class Object3D
Description
W&B class for 3D point clouds.Args
data_or_path: Object3D can be initialized from a file or a numpy array.caption: Caption associated with the object for display.kwargs:
Methods
method from_file
Arguments
data_or_path: A path to a file or aTextIOstream.file_type: Specifies the data format passed todata_or_path. Required whendata_or_pathis aTextIOstream. This parameter is ignored if a file path is provided. The type is taken from the file extension.
method from_numpy
Arguments
data: Each entry in the array will represent one point in the point cloud.
method from_point_cloud
Arguments
points: The points in the point cloud.boxes: 3D bounding boxes for labeling the point cloud. Boxes are displayed in point cloud visualizations.vectors: Each vector is displayed in the point cloud visualization. Can be used to indicate directionality of bounding boxes. Defaults to None.point_cloud_type: At this time, only the “lidar/beta” type is supported. Defaults to “lidar/beta”.