UNPKG

ppu-ocv

Version:

A type-safe, modular, chainable image processing library built on top of OpenCV.js with a fluent API leveraging pipeline processing.

17 lines (16 loc) 295 B
export interface Coordinate { x: number; y: number; } export interface Points { topLeft: Coordinate; topRight: Coordinate; bottomLeft: Coordinate; bottomRight: Coordinate; } export interface BoundingBox { x0: number; y0: number; x1: number; y1: number; }