A bounding volume represents a region in a point cloud

interface AnnotationsBoundingVolume {
    assetRef?: AnnotationsAssetRef;
    confidence?: number;
    instanceRef?: AnnotationsInstanceRef;
    label?: string;
    region: AnnotationsTypesPrimitivesGeometry3DGeometry[];
}

Properties

The asset this annotation is pointing to

confidence?: number

The confidence score for the primitive. It should be between 0 and 1.

0

1

The Data Modeling Instance this annotation is pointing to

label?: string

The label describing what type of object it is

The region of the annotation defined by a list of geometry primitives (cylinder and box).