UNPKG

@autojs/opencv

Version:

Asynchronous OpenCV 3.x nodejs bindings with JavaScript and TypeScript API for Auto.js Pro.

13 lines (11 loc) 308 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; }