Home
last modified time | relevance | path

Searched refs:cur_pt (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cv/src/
Dcvconvhull.cpp767 CvPoint *cur_pt = (CvPoint*)reader.ptr; in cvCheckContourConvexity() local
769 int dx0 = cur_pt->x - prev_pt->x; in cvCheckContourConvexity()
770 int dy0 = cur_pt->y - prev_pt->y; in cvCheckContourConvexity()
779 prev_pt = cur_pt; in cvCheckContourConvexity()
780 cur_pt = (CvPoint *) reader.ptr; in cvCheckContourConvexity()
782 dx = cur_pt->x - prev_pt->x; in cvCheckContourConvexity()
783 dy = cur_pt->y - prev_pt->y; in cvCheckContourConvexity()
808 CvPoint2D32f *cur_pt = (CvPoint2D32f*)reader.ptr; in cvCheckContourConvexity() local
810 float dx0 = cur_pt->x - prev_pt->x; in cvCheckContourConvexity()
811 float dy0 = cur_pt->y - prev_pt->y; in cvCheckContourConvexity()
[all …]
/external/opencv3/modules/imgproc/src/
Dconvhull.cpp344 Point_<_Tp> cur_pt = p[n-1]; in isContourConvex_() local
346 _Tp dx0 = cur_pt.x - prev_pt.x; in isContourConvex_()
347 _Tp dy0 = cur_pt.y - prev_pt.y; in isContourConvex_()
355 prev_pt = cur_pt; in isContourConvex_()
356 cur_pt = p[i]; in isContourConvex_()
358 dx = cur_pt.x - prev_pt.x; in isContourConvex_()
359 dy = cur_pt.y - prev_pt.y; in isContourConvex_()