Home
last modified time | relevance | path

Searched refs:init_data_cost (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudastereo/src/cuda/
Dstereocsbp.hpp6 …void init_data_cost(const uchar *left, const uchar *right, uchar *ctemp, size_t cimg_step, int row…
Dstereocsbp.cu179 …__global__ void init_data_cost(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_… in init_data_cost() function
281 …case 1: init_data_cost<T, 1><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
282 …case 3: init_data_cost<T, 3><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
283 …case 4: init_data_cost<T, 4><<<grid, threads, 0, stream>>>(cleft, cright, ctemp, cimg_step, h, w, … in init_data_cost_caller_()
308 …void init_data_cost(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t cimg_step, int r… in init_data_cost() function
346 …template void init_data_cost<short>(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t …
349 …template void init_data_cost<float>(const uchar *cleft, const uchar *cright, uchar *ctemp, size_t …
/external/opencv3/modules/cudastereo/src/
Dstereocsbp.cpp246init_data_cost(left.ptr<uchar>(), right.ptr<uchar>(), temp_.ptr<uchar>(), left.step, left.rows, le… in compute()
277init_data_cost(left.ptr<uchar>(), right.ptr<uchar>(), temp_.ptr<uchar>(), left.step, left.rows, le… in compute()