Class: OpenCV::CvAvgComp
- Defined in:
- ext/opencv/cvavgcomp.cpp,
ext/opencv/cvavgcomp.cpp
Overview
CvRect with parameter “neighbors”
Instance Method Summary collapse
-
#neighbors ⇒ Integer
Return neighbors.
Methods inherited from CvRect
#bottom_left, #bottom_right, #center, compatible?, #height, #height=, #initialize, max_rect, #points, #top_left, #top_right, #width, #width=, #x, #x=, #y, #y=
Constructor Details
This class inherits a constructor from OpenCV::CvRect
Instance Method Details
#neighbors ⇒ Integer
Return neighbors
39 40 41 42 43 |
# File 'ext/opencv/cvavgcomp.cpp', line 39
VALUE
rb_neighbors(VALUE self)
{
return INT2NUM(CVAVGCOMP(self)->neighbors);
}
|