Class: OpenCV::CvRect
- Inherits:
-
Object
- Object
- OpenCV::CvRect
- Defined in:
- ext/opencv/cvrect.cpp
Overview
This class have coordinate of top-left point(x, y) and size, width and height.
C stracture is here, very simple.
typdef struct CvRect {
int x;
int y;
int width;
int height;
}