Interface Point

Coordinates of a point in an image with the top-left corner being the reference point.

interface Point {
    column: number;
    row: number;
}

Properties

Properties

column: number

Point column.

row: number

Point row.