Method: OpenCV::CvSURFPoint#pt
- Defined in:
- ext/opencv/cvsurfpoint.cpp
#pt ⇒ CvPoint2D32f
Return position of the feature as CvPoint2D32f.
78 79 80 81 82 |
# File 'ext/opencv/cvsurfpoint.cpp', line 78
VALUE
rb_get_pt(VALUE self)
{
return REFER_OBJECT(cCvPoint2D32f::rb_class(), &CVSURFPOINT(self)->pt, self);
}
|