Class: OpenCV::CvPoint2D32f
- Inherits:
-
Object
- Object
- OpenCV::CvPoint2D32f
- Defined in:
- ext/opencv/cvpoint2d32f.cpp
Overview
This class means one point on X axis Y axis. X and Y takes the value of the Float. see also CvPoint
C structure is here, very simple.
typdef struct CvPoint2D32f {
float x;
float y;
}