CornersUnit
The CornersUnit interface extends the IntermediateResultUnit interface and represents a unit of detected corners.
interface CornersUnit extends IntermediateResultUnit {
corners: Array<Corner>;
}
corners
An array of detected corners within the image, identified during image processing.
See Also