Searched refs:data_cost (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudastereo/src/cuda/ |
D | stereocsbp.cu | 97 T* data_cost = (T*)ctemp + y * msg_step + x; in get_first_k_initial_global() local 105 T cur = data_cost[d * disp_step]; in get_first_k_initial_global() 115 data_cost [id * disp_step] = numeric_limits<T>::max(); in get_first_k_initial_global() 132 T* data_cost = (T*)ctemp + y * msg_step + x; in get_first_k_initial_local() local 136 T prev = data_cost[0 * disp_step]; in get_first_k_initial_local() 137 T cur = data_cost[1 * disp_step]; in get_first_k_initial_local() 138 T next = data_cost[2 * disp_step]; in get_first_k_initial_local() 147 data_cost[d * disp_step] = numeric_limits<T>::max(); in get_first_k_initial_local() 153 next = data_cost[(d + 1) * disp_step]; in get_first_k_initial_local() 163 cur = data_cost[d * disp_step]; in get_first_k_initial_local() [all …]
|
D | stereocsbp.hpp | 10 …t, const uchar *right, size_t cimg_step, const T* disp_selected_pyr, T* data_cost, size_t msg_step, 18 T* data_cost_selected, const T* data_cost, size_t msg_step,
|
/external/opencv3/modules/cudastereo/src/ |
D | stereocsbp.cpp | 190 GpuMat u[2], d[2], l[2], r[2], disp_selected_pyr[2], data_cost, data_cost_selected; in compute() local 198 data_cost = mbuf_.rowRange(0, rows * nr_plane_ * 2); in compute() 199 data_cost_selected = mbuf_.rowRange(data_cost.rows, data_cost.rows + rows * nr_plane_); in compute() 203 GpuMat sub1 = mbuf_.rowRange(data_cost.rows + data_cost_selected.rows, mbuf_.rows); in compute() 216 Size temp_size = data_cost.size(); in compute() 235 data_cost.setTo(0, _stream); in compute() 251 …right.ptr<uchar>(), left.step, disp_selected_pyr[cur_idx].ptr<float>(), data_cost.ptr<float>(), el… in compute() 260 … data_cost_selected.ptr<float>(), data_cost.ptr<float>(), elem_step, rows_pyr[i], in compute() 282 …right.ptr<uchar>(), left.step, disp_selected_pyr[cur_idx].ptr<short>(), data_cost.ptr<short>(), el… in compute() 291 … data_cost_selected.ptr<short>(), data_cost.ptr<short>(), elem_step, rows_pyr[i], in compute()
|