OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:drawcolordisp
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudastereo/perf/
perf_stereo.cpp
228
//
DrawColorDisp
230
PERF_TEST_P(Sz_Depth,
DrawColorDisp
,
245
TEST_CYCLE() cv::cuda::
drawColorDisp
(d_src, dst, 255);
/external/opencv3/modules/cudastereo/src/
util.cpp
51
void cv::cuda::
drawColorDisp
(InputArray, OutputArray, int, Stream&) { throw_no_cuda(); }
89
//
drawColorDisp
111
void cv::cuda::
drawColorDisp
(InputArray _src, OutputArray dst, int ndisp, Stream& stream)
/external/opencv3/modules/cudastereo/src/cuda/
util.cu
102
///////////////////////////////////
drawColorDisp
///////////////////////////////////////////////
166
__global__ void
drawColorDisp
(uchar* disp, size_t disp_step, uchar* out_image, size_t out_step, int width, int height, int ndisp)
186
__global__ void
drawColorDisp
(short* disp, size_t disp_step, uchar* out_image, size_t out_step, int width, int height, int ndisp)
212
drawColorDisp
<<<grid, threads, 0, stream>>>(src.data, src.step, dst.data, dst.step, src.cols, src.rows, ndisp);
226
drawColorDisp
<<<grid, threads, 0, stream>>>(src.data, src.step / sizeof(short), dst.data, dst.step, src.cols, src.rows, ndisp);
/external/opencv3/modules/cudastereo/include/opencv2/
cudastereo.hpp
322
CV_EXPORTS void
drawColorDisp
(InputArray src_disp, OutputArray dst_disp, int ndisp, Stream& stream = Stream::Null());
Completed in 88 milliseconds