Home
last modified time | relevance | path

Searched refs:nr_plane (Results 1 – 4 of 4) sorted by relevance

/external/opencv3/modules/cudastereo/src/cuda/
Dstereocsbp.cu87 …(uchar *ctemp, T* data_cost_selected_, T *selected_disp_pyr, int h, int w, int nr_plane, int ndisp, in get_first_k_initial_global() argument
99 for(int i = 0; i < nr_plane; i++) in get_first_k_initial_global()
122 …(uchar *ctemp, T* data_cost_selected_, T* selected_disp_pyr, int h, int w, int nr_plane, int ndisp, in get_first_k_initial_local() argument
140 for (int d = 1; d < ndisp - 1 && nr_local_minimum < nr_plane; d++) in get_first_k_initial_local()
156 for (int i = nr_local_minimum; i < nr_plane; i++) in get_first_k_initial_local()
309 …int h, int w, int level, int nr_plane, int ndisp, int channels, float data_weight, float max_data_… in init_data_cost() argument
336 …eads, 0, stream>>> (ctemp, data_cost_selected, disp_selected_pyr, h, w, nr_plane, ndisp, msg_step,… in init_data_cost()
338 …reads, 0, stream>>>(ctemp, data_cost_selected, disp_selected_pyr, h, w, nr_plane, ndisp, msg_step,… in init_data_cost()
347 …int h, int w, int level, int nr_plane, int ndisp, int channels, float data_weight, float max_data_…
350 …int h, int w, int level, int nr_plane, int ndisp, int channels, float data_weight, float max_data_…
[all …]
Dstereocsbp.hpp7 …int h, int w, int level, int nr_plane, int ndisp, int channels, float data_weight, float max_data_…
11 …int rows, int cols, int h, int w, int h2, int level, int nr_plane, int channels, float data_weight…
19 … int h, int w, int nr_plane, int h2, int w2, int nr_plane2, cudaStream_t stream);
23 …const T* selected_disp_pyr_cur, size_t msg_step, int h, int w, int nr_plane, int iters, int max_di…
27 const PtrStepSz<short>& disp, int nr_plane, cudaStream_t stream);
/external/opencv3/modules/cudastereo/src/
Dstereocsbp.cpp63 StereoCSBPImpl(int ndisp, int iters, int levels, int nr_plane, int msg_type);
109 void setNrPlane(int nr_plane) { nr_plane_ = nr_plane; } in setNrPlane() argument
137 StereoCSBPImpl::StereoCSBPImpl(int ndisp, int iters, int levels, int nr_plane, int msg_type) : in StereoCSBPImpl() argument
141 msg_type_(msg_type), nr_plane_(nr_plane), use_local_init_data_cost_(true) in StereoCSBPImpl()
337 …cv::cuda::createStereoConstantSpaceBP(int ndisp, int iters, int levels, int nr_plane, int msg_type) in createStereoConstantSpaceBP() argument
339 return makePtr<StereoCSBPImpl>(ndisp, iters, levels, nr_plane, msg_type); in createStereoConstantSpaceBP()
342 …stimateRecommendedParams(int width, int height, int& ndisp, int& iters, int& levels, int& nr_plane) in estimateRecommendedParams() argument
354 nr_plane = (int) ((float) ndisp / std::pow(2.0, levels + 1)); in estimateRecommendedParams()
/external/opencv3/modules/cudastereo/include/opencv2/
Dcudastereo.hpp221 virtual void setNrPlane(int nr_plane) = 0;
229 …timateRecommendedParams(int width, int height, int& ndisp, int& iters, int& levels, int& nr_plane);
241 …createStereoConstantSpaceBP(int ndisp = 128, int iters = 8, int levels = 4, int nr_plane = 4, int …