Searched defs:getAgastScore (Results 1 - 1 of 1) sorted by relevance

/external/opencv3/modules/features2d/src/
H A Dbrisk.cpp166 getAgastScore(int x, int y, int threshold) const;
170 getAgastScore(float xf, float yf, int threshold, float scale = 1.0f) const;
896 int s_0_0 = l.getAgastScore(point.x - 1, point.y - 1, 1);
897 int s_1_0 = l.getAgastScore(point.x, point.y - 1, 1);
898 int s_2_0 = l.getAgastScore(point.x + 1, point.y - 1, 1);
899 int s_2_1 = l.getAgastScore(point.x + 1, point.y, 1);
900 int s_1_1 = l.getAgastScore(point.x, point.y, 1);
901 int s_0_1 = l.getAgastScore(point.x - 1, point.y, 1);
902 int s_0_2 = l.getAgastScore(point.x - 1, point.y + 1, 1);
903 int s_1_2 = l.getAgastScore(poin
2118 BriskLayer::getAgastScore(int x, int y, int threshold) const function in class:cv::BriskLayer
2149 BriskLayer::getAgastScore(float xf, float yf, int threshold_in, float scale_in) const function in class:cv::BriskLayer
[all...]

Completed in 132 milliseconds