HomeSort by relevance Sort by last modified time
    Searched full:query_cols (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/features2d/src/opencl/
brute_force_match.cl 184 int query_cols,
197 query_cols /= kercn;
209 s_query[mad24(MAX_DESC_LEN, lidy, loadx)] = loadx < query_cols ? query_vec[loadx] : 0;
243 for (int i = 0, endq = (query_cols + BLOCK_SIZE - 1) / BLOCK_SIZE; i < endq; i++)
247 if (loadx < query_cols)
316 int query_cols,
337 query_cols /= kercn;
346 for (int i = 0 ; i < (query_cols + BLOCK_SIZE - 1) / BLOCK_SIZE ; ++i)
351 if (loadx < query_cols)
387 int query_cols,
    [all...]
  /external/opencv3/modules/features2d/
opencl_kernels_features2d.cpp 140 "int query_cols,\n"
152 "query_cols /= kercn;\n"
161 "s_query[mad24(MAX_DESC_LEN, lidy, loadx)] = loadx < query_cols ? query_vec[loadx] : 0;\n"
186 "for (int i = 0, endq = (query_cols + BLOCK_SIZE - 1) / BLOCK_SIZE; i < endq; i++)\n"
189 "if (loadx < query_cols)\n"
243 "int query_cols,\n"
261 "query_cols /= kercn;\n"
268 "for (int i = 0 ; i < (query_cols + BLOCK_SIZE - 1) / BLOCK_SIZE ; ++i)\n"
271 "if (loadx < query_cols)\n"
301 "int query_cols,\n
    [all...]
  /external/opencv3/modules/features2d/src/
matchers.cpp 70 const int query_cols = query.cols(); local
87 if (query_cols <= 64)
89 else if (query_cols <= 128 && !is_cpu)
168 const int query_cols = query.cols(); local
187 if (query_cols <= 64)
189 else if (query_cols <= 128 && !is_cpu)
    [all...]

Completed in 4738 milliseconds