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

  /external/opencv/cv/src/
cvrotcalipers.cpp 158 double convexity = ax * by - ay * bx; local
160 if( convexity != 0 )
162 orientation = (convexity > 0) ? 1.f : (-1.f);
cvconvhull.cpp 78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */ local
80 if( CV_SIGN(convexity) == sign2 && (ax != 0 || ay != 0) )
151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */ local
153 if( CV_SIGN( convexity ) == sign2 && (ax != 0 || ay != 0) )

Completed in 70 milliseconds