Point in a 2D-Cartesian coordinate system with origin at the top-left corner of the page

interface AnnotationsPoint {
    confidence?: number;
    x: number;
    y: number;
}

Properties

Properties

confidence?: number

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

0

1

x: number

The abscissa of the point in a coordinate system with origin at the top-left corner of the page. Normalized in (0,1).

0

1

y: number

The ordinate of the point in a coordinate system with origin at the top-left corner of the page. Normalized in (0,1).

0

1