Searched refs:rx1 (Results 1 - 3 of 3) sorted by relevance

/external/autotest/client/tools/
H A Dhtml_report.py1495 rx1 = re.compile('(\s+)')
1496 log_text = rx1.sub(' ', res['log'])
/external/opencv3/modules/features2d/src/
H A Devaluation.cpp264 float rx1 = minx + i*dr; local
265 float rx2 = rx1 - diff.x;
270 float e1 = (float)(ellipse1[0]*rx1*rx1 + 2*ellipse1[1]*rx1*ry1 + ellipse1[2]*ry1*ry1);
H A Dbrisk.cpp2155 const float rx1 = xf - float(x); local
2156 const float rx = 1.0f - rx1;
2161 return (uchar)(rx * ry * getAgastScore(x, y, threshold_in) + rx1 * ry * getAgastScore(x + 1, y, threshold_in)
2162 + rx * ry1 * getAgastScore(x, y + 1, threshold_in) + rx1 * ry1 * getAgastScore(x + 1, y + 1, threshold_in));

Completed in 353 milliseconds