Lines Matching refs:yf
170 getAgastScore(float xf, float yf, int threshold, float scale = 1.0f) const;
204 value(const cv::Mat& mat, float xf, float yf, float scale) const;
458 const float yf = briskPoint.y + key_y; in smoothedIntensity() local
460 const int y = int(yf); in smoothedIntensity()
473 const int r_y = (int)((yf - y) * 1024); in smoothedIntensity()
496 const float y_1 = yf - sigma_half; in smoothedIntensity()
497 const float y1 = yf + sigma_half; in smoothedIntensity()
1038 float yf; in getScoreBelow() local
1051 yf = float(sixth_y) / 6.0f; in getScoreBelow()
1064 yf = float(quarter_y) / 4.0f; in getScoreBelow()
1076 const float y_1 = yf - offs; in getScoreBelow()
1077 const float y1 = yf + offs; in getScoreBelow()
2149 BriskLayer::getAgastScore(float xf, float yf, int threshold_in, float scale_in) const in getAgastScore() argument
2157 const int y = int(yf); in getAgastScore()
2158 const float ry1 = yf - float(y); in getAgastScore()
2171 for (int y = int(yf - halfscale); y <= int(yf + halfscale + 1.0f); y++) in getAgastScore()
2177 return value(scores_, xf, yf, scale_in); in getAgastScore()
2183 BriskLayer::value(const cv::Mat& mat, float xf, float yf, float scale_in) const in value() argument
2188 const int y = cvFloor(yf); in value()
2201 const int r_y = (int)((yf - y) * 1024); in value()
2225 const float y_1 = yf - sigma_half; in value()
2226 const float y1 = yf + sigma_half; in value()