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

  /external/opencv/cv/src/
cvsubdivision2d.cpp 144 CvSubdiv2DPoint * org_pt, CvSubdiv2DPoint * dst_pt )
155 quadedge->pt[edge & 3] = org_pt;
350 CvPoint2D32f org_pt = cvSubdiv2DEdgeOrg( edge )->pt; local
353 t1 = fabs( pt.x - org_pt.x );
354 t1 += fabs( pt.y - org_pt.y );
357 t3 = fabs( org_pt.x - dst_pt.x );
358 t3 += fabs( org_pt.y - dst_pt.y );
373 fabs( cvTriangleArea( pt, org_pt, dst_pt )) < FLT_EPSILON )
834 CvSubdiv2DPoint* org_pt,
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 353 Point2f org_pt, dst_pt; local
354 edgeOrg(edge, &org_pt);
357 double t1 = fabs( pt.x - org_pt.x );
358 t1 += fabs( pt.y - org_pt.y );
361 double t3 = fabs( org_pt.x - dst_pt.x );
362 t3 += fabs( org_pt.y - dst_pt.y );
377 fabs( triangleArea( pt, org_pt, dst_pt )) < FLT_EPSILON )

Completed in 442 milliseconds