Home
last modified time | relevance | path

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

/external/opencv3/modules/imgproc/src/
Dfeatureselect.cpp196 int y_cell = c.y / cell_size; in ocl_goodFeaturesToTrack() local
199 int y1 = y_cell - 1; in ocl_goodFeaturesToTrack()
201 int y2 = y_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()
340 int y_cell = y / cell_size; in goodFeaturesToTrack() local
343 int y1 = y_cell - 1; in goodFeaturesToTrack()
345 int y2 = y_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.cpp154 int y_cell = static_cast<int>(p.y / cell_size); in detect() local
157 int y1 = y_cell - 1; in detect()
159 int y2 = y_cell + 1; in detect()
194 grid[y_cell * grid_width + x_cell].push_back(p); in detect()