A cylinder in 3D space, defined by the centers of the two end surfaces and the radius.

interface AnnotationsCylinder {
    centerA: number[];
    centerB: number[];
    confidence?: number;
    label?: string;
    radius: number;
}

Properties

centerA: number[]

The center of the first cap.

centerB: number[]

The center of the second cap.

confidence?: number

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

0

1

label?: string

The label describing what type of object it is

radius: number

The radius of the cylinder.

0