@microblink/blinkid-in-browser-sdk
Version:
A simple ID scanning library for WebAssembly-enabled browsers.
34 lines (27 loc) • 614 B
text/typescript
/**
* Copyright (c) Microblink Ltd. All rights reserved.
*/
/**
* Interface representing a point in image.
*/
export interface Point
{
/** X-coordinate of the point */
x: number
/** Y-coordinate of the point */
y: number
}
/**
* Interface representing a quadrilateral
*/
export interface Quadrilateral
{
/** Top-left point of the quadrilateral */
topLeft: Point
/** Top-right point of the quadrilateral */
topRight: Point
/** Bottom-left point of the quadrilateral */
bottomLeft: Point
/** Bottom-right point of the quadrilateral */
bottomRight: Point
}