Home
last modified time | relevance | path

Searched refs:x_cell (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/imgproc/src/
Dfeatureselect.cpp195 int x_cell = c.x / cell_size; in ocl_goodFeaturesToTrack() local
198 int x1 = x_cell - 1; in ocl_goodFeaturesToTrack()
200 int x2 = x_cell + 1; in ocl_goodFeaturesToTrack()
234 grid[y_cell*grid_width + x_cell].push_back(Point2f((float)c.x, (float)c.y)); in ocl_goodFeaturesToTrack()
339 int x_cell = x / cell_size; in goodFeaturesToTrack() local
342 int x1 = x_cell - 1; in goodFeaturesToTrack()
344 int x2 = x_cell + 1; in goodFeaturesToTrack()
378 grid[y_cell*grid_width + x_cell].push_back(Point2f((float)x, (float)y)); in goodFeaturesToTrack()
/external/opencv3/modules/cudaimgproc/src/
Dgftt.cpp153 int x_cell = static_cast<int>(p.x / cell_size); in detect() local
156 int x1 = x_cell - 1; in detect()
158 int x2 = x_cell + 1; in detect()
194 grid[y_cell * grid_width + x_cell].push_back(p); in detect()