UNPKG

opencv4nodejs

Version:

Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API.

13 lines (11 loc) 320 B
import { Size } from './Size.d'; import { Rect } from './Rect.d'; import { Point2 } from './Point2.d'; export class RotatedRect { readonly center: Point2; readonly size: Size; readonly angle: number; constructor(); constructor(center: Point2, size: Size, angle: number); boundingRect(): Rect; }