UNPKG

handwritten-mathematics-recogniser

Version:

Easy and abstracted way to recognise handwritten mathematics in a browser or in a web view.

11 lines (10 loc) 269 B
import { Coordinate } from './coordinate'; import { BoundingBox } from './bounding-box'; export interface Layer { center: Coordinate; boundingBox: BoundingBox; width?: number; height?: number; image: number[][]; recognition?: string | number; }