theothergrantdavidson / opencv-ts

A place for the typescript bindings for OpencvJS
Apache License 2.0
52 stars 19 forks source link

Add missing attributes for the RotatedRect interface #9

Closed idiotWu closed 3 years ago

idiotWu commented 3 years ago

This PR added the following attributes to the RotatedRect interface as per cv::RotatedRect class reference:

interface RotatedRect {
    angle: number;
    center: Point;
    size: Size;
}