HomeSort by relevance Sort by last modified time
    Searched defs:CvPoint (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/include/
cxtypes.h 907 /******************************* CvPoint and variants ***********************************/
909 typedef struct CvPoint
914 CvPoint;
917 CV_INLINE CvPoint cvPoint( int x, int y )
919 CvPoint p;
947 CV_INLINE CvPoint2D32f cvPointTo32f( CvPoint point )
953 CV_INLINE CvPoint cvPointFrom32f( CvPoint2D32f point )
955 CvPoint ipt;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 158 CV_StsBadPoint= -207, /**< bad CvPoint */
864 /******************************* CvPoint and variants ***********************************/
866 typedef struct CvPoint
872 CvPoint(int _x = 0, int _y = 0): x(_x), y(_y) {}
874 CvPoint(const cv::Point_<_Tp>& pt): x((int)pt.x), y((int)pt.y) {}
879 CvPoint;
881 /** constructs CvPoint structure. */
882 CV_INLINE CvPoint cvPoint( int x, int y )
884 CvPoint p
    [all...]

Completed in 201 milliseconds