struct CvPoint
#include <types_c.h> struct CvPoint { // fields int x; int y; // construction CvPoint( int _x = 0, int _y = 0 ); template <typename _Tp> CvPoint(const cv::Point_<_Tp>& pt); // methods template <typename _Tp> operator cv::Point_< _Tp >() const; };