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

  /external/opencv/cv/src/
cvrotcalipers.cpp 320 float idet = 1.f / (A1 * B2 - A2 * B1); local
322 float px = (C1 * B2 - C2 * B1) * idet;
323 float py = (A1 * C2 - A2 * C1) * idet;
cvshapedescr.cpp 790 double x0, y0, idet, scale, offx = 0, offy = 0; local
907 idet = a * c - b * b * 0.25;
908 idet = idet > DBL_EPSILON ? 1./idet : 0;
911 scale = sqrt( 0.25 * idet );
    [all...]

Completed in 284 milliseconds