Class: OpenCV::CvRect

Inherits:
Object
  • Object
show all
Defined in:
ext/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;
}