HomeSort by relevance Sort by last modified time
    Searched refs:CvPoint (Results 26 - 50 of 95) sorted by null

12 3 4

  /external/opencv/cvaux/src/
cvcreatehandmask.cpp 58 CvPoint pt;
decomppoly.cpp 140 bool icvEarCutTriangulation( CvPoint* contour,
327 inline bool icvFindTwoNeighbourEdges( CvPoint* contour,
428 bool icvFindReferences( CvPoint* contour,
533 CvPoint* contour;
556 contour = ( CvPoint* )memory;
cvbgfg_common.cpp 73 CvMemStorage* storage, CvPoint offset )
112 cvPoint(-offset.x,-offset.y));
_cvfacedetection.h 212 CvPoint pCenter;
292 bool isPointInRect(CvPoint p,CvRect rect);
cvsegment.cpp 86 CvSize /*roi*/, CvPoint seed,
331 const CvPoint icvCodeDeltas[8] =
369 CvPoint pt = { x, y };
389 sizeof(CvContour), sizeof(CvPoint), storage, &writer );
496 CvPoint pt;
524 cvRectangle( mask, cvPoint(0,0), cvPoint(size.width-1,size.height-1), cvScalarAll(1), 1 );
  /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...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
types_c.h 475 CvPoint pt;
520 CvPoint* start; /**< point of the contour where the defect begins */
521 CvPoint* end; /**< point of the contour where the defect ends */
522 CvPoint* depth_point; /**< the farthest from the convex hull point within the defect */
  /external/opencv3/modules/objdetect/include/opencv2/objdetect/
objdetect_c.h 148 CvPoint pt, int start_stage CV_DEFAULT(0));
  /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...]
cxcore.h     [all...]
  /external/opencv/cv/src/
cvapprox.cpp 49 CvPoint pt;
78 CvPoint pt = chain->origin;
93 header_size, sizeof( CvPoint ), storage, &writer );
162 CvPoint pt0;
526 CvPoint start_pt = {INT_MIN, INT_MIN}, end_pt = {0, 0}, pt = {0,0};
552 end_pt = *(CvPoint*)(reader.ptr);
553 start_pt = *(CvPoint*)cvGetSeqElem( src_contour, -1 );
697 *((CvPoint*)reader2.ptr) = start_pt = end_pt;
703 *((CvPoint*)reader2.ptr) = start_pt = pt;
709 *((CvPoint*)reader2.ptr) = pt
    [all...]
cvmorph.cpp 132 CvSize _ksize, CvPoint _anchor,
159 CvSize _ksize, CvPoint _anchor,
226 CvPoint* nz_loc;
267 nz_loc = (CvPoint*)el_sparse;
273 nz_loc[k++] = cvPoint(j*cn,i);
276 nz_loc[k++] = cvPoint(anchor.x*cn,anchor.y);
294 CvPoint _anchor, int _border_mode,
377 void CvMorphology::init_binary_element( CvMat* element, int element_shape, CvPoint anchor )
659 CvPoint* el_sparse = (CvPoint*)state->get_element_sparse_buf();
    [all...]
cvfeatureselect.cpp 69 CvPoint *ptr = (CvPoint *) corners;
cvhough.cpp 503 CvPoint pt;
532 CV_CALL( cvStartWriteSeq( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage, &writer ));
560 CvPoint* pt = (CvPoint*)cvGetSeqElem( seq, idx );
561 CvPoint line_end[2] = {{0,0}, {0,0}};
572 *pt = *(CvPoint*)cvGetSeqElem( seq, count-1 );
891 CV_CALL( nz = cvCreateSeq( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage ));
911 CvPoint pt;
1016 CvPoint pt;
    [all...]
cvoptflowbm.cpp 115 CvPoint *ss = 0;
178 ss = (CvPoint *) cvAlloc( (2 * maxRange.width + 1) * (2 * maxRange.height + 1) *
179 sizeof( CvPoint ));
cvpgh.cpp 192 CvPoint pt1, pt2;
214 CvPoint pt1, pt2;
236 CvPoint pt3, pt4;
cvrotcalipers.cpp 410 CvPoint pt = **(CvPoint**)(reader.ptr);
426 CvPoint pt;
cvmoments.cpp 102 xi_1 = ((CvPoint*)(reader.ptr))->x;
103 yi_1 = ((CvPoint*)(reader.ptr))->y;
119 xi = ((CvPoint*)(reader.ptr))->x;
120 yi = ((CvPoint*)(reader.ptr))->y;
451 icvGetSpatialMoment_64f_p( ippmomentstate, 0, 0, 0, cvPoint(0,0), &moments->m00 );
452 icvGetSpatialMoment_64f_p( ippmomentstate, 1, 0, 0, cvPoint(0,0), &moments->m10 );
453 icvGetSpatialMoment_64f_p( ippmomentstate, 0, 1, 0, cvPoint(0,0), &moments->m01 );
454 icvGetSpatialMoment_64f_p( ippmomentstate, 2, 0, 0, cvPoint(0,0), &moments->m20 );
455 icvGetSpatialMoment_64f_p( ippmomentstate, 1, 1, 0, cvPoint(0,0), &moments->m11 );
456 icvGetSpatialMoment_64f_p( ippmomentstate, 0, 2, 0, cvPoint(0,0), &moments->m02 )
    [all...]
  /external/opencv/cv/include/
cv.h 71 CVAPI(void) cvCopyMakeBorder( const CvArr* src, CvArr* dst, CvPoint offset,
90 CvPoint anchor CV_DEFAULT(cvPoint(-1,-1)));
363 CVAPI(int) cvSampleLine( const CvArr* image, CvPoint pt1, CvPoint pt2, void* buffer,
414 CvPoint offset CV_DEFAULT(cvPoint(0,0)));
426 CvPoint offset CV_DEFAULT(cvPoint(0,0)));
454 CVAPI(CvPoint) cvReadChainPoint( CvChainPtReader* reader )
    [all...]
cvcompat.h 382 CV_INLINE void cvConvexHull( CvPoint* points, int num_points,
407 CV_INLINE void cvMinAreaRect( CvPoint* points, int n,
860 CV_INLINE void cvLineAA( CvArr* img, CvPoint pt1, CvPoint pt2,
866 CV_INLINE void cvCircleAA( CvArr* img, CvPoint center, int radius,
872 CV_INLINE void cvEllipseAA( CvArr* img, CvPoint center, CvSize axes,
881 CV_INLINE void cvPolyLineAA( CvArr* img, CvPoint** pts, int* npts, int contours,
    [all...]
  /external/opencv/cvaux/include/
cvmat.hpp 499 double min( CvPoint* minloc = 0 ) const;
500 double max( CvPoint* maxloc = 0 ) const;
511 _CvMATElem_ operator ()( CvPoint loc );
512 _CvMATConstElem_ operator ()( CvPoint loc ) const;
517 _CvMATElemCn_ operator()( CvPoint pt, int coi );
518 double operator()( CvPoint pt, int coi ) const;
526 void* ptr( CvPoint pt );
527 const void* ptr( CvPoint pt ) const;
627 double max( CvPoint* maxloc = 0 ) const;
628 double min( CvPoint* minloc = 0 ) const
    [all...]
  /external/opencv3/modules/imgproc/test/
test_contours.cpp 165 CvPoint center;
359 CvPoint pt1;
360 CvPoint pt2;
test_convhull.cpp 736 CvPoint bp[4], *bpp = bp;
741 cvCircle(img,cvPoint(cvRound(p[i].x*a+b),cvRound(p[i].y*c+d)), 3, CV_RGB(0,255,0), -1 );
743 bp[i] = cvPoint(cvRound(box_pt[i].x*a+b),cvRound(box_pt[i].y*c+d));
846 CvPoint bp[4], *bpp = bp;
851 cvCircle(img,cvPoint(cvRound(p[i].x*a+b),cvRound(p[i].y*c+d)), 3, CV_RGB(0,255,0), -1 );
853 bp[i] = cvPoint(cvRound(triangle[i].x*a+b),cvRound(triangle[i].y*c+d));
980 cvCircle(img,cvPoint(cvRound(p[i].x*a+b),cvRound(p[i].y*a+d)), 3, CV_RGB(0,255,0), -1 );
981 cvCircle( img, cvPoint(cvRound(center.x*a+b),cvRound(center.y*a+d)),
    [all...]
  /external/opencv3/modules/highgui/include/opencv2/highgui/
highgui_c.h 81 CVAPI(void) cvAddText(const CvArr* img, const char* text, CvPoint org, CvFont *arg2);
  /external/opencv3/modules/imgcodecs/test/
test_drawing.cpp 258 vector<CvPoint> polyline(4);
259 polyline[0] = cvPoint(0, 0);
260 polyline[1] = cvPoint(imgSize.width, 0);
261 polyline[2] = cvPoint(imgSize.width, imgSize.height);
262 polyline[3] = cvPoint(0, imgSize.height);
263 CvPoint* pts = &polyline[0];
268 CvPoint p1 = cvPoint(1,1), p2 = cvPoint(3,3);
270 cvCircle( &img, cvPoint(300,100), 40, cvScalar(0,0,255), 3 ); // dra
    [all...]

Completed in 247 milliseconds

12 3 4