/external/opencv3/modules/cudaimgproc/src/cuda/ |
debayer.cu | 63 __device__ void apply(const PtrStepSzb& src, int s_x, int s_y, bool blue_last, bool start_with_green) 78 if ((s_y & 1) ^ start_with_green) 199 __global__ void Bayer2BGR_8u(const PtrStepSzb src, PtrStep<D> dst, const bool blue_last, const bool start_with_green) 210 bayer.apply(src, s_x, s_y, blue_last, start_with_green); 229 __device__ void apply(const PtrStepSzb& src, int s_x, int s_y, bool blue_last, bool start_with_green) 244 if ((s_y & 1) ^ start_with_green) 321 __global__ void Bayer2BGR_16u(const PtrStepSzb src, PtrStep<D> dst, const bool blue_last, const bool start_with_green) 332 bayer.apply(src, s_x, s_y, blue_last, start_with_green); 343 void Bayer2BGR_8u_gpu(PtrStepSzb src, PtrStepSzb dst, bool blue_last, bool start_with_green, cudaStream_t stream) 352 Bayer2BGR_8u<dst_t><<<grid, block, 0, stream>>>(src, (PtrStepSz<dst_t>)dst, blue_last, start_with_green); [all...] |
/external/opencv3/modules/imgproc/src/ |
demosaicing.cpp | 509 ParallelLoopBody(), srcmat(_srcmat), dstmat(_dstmat), Start_with_green(_start_with_green), 525 int start_with_green = Start_with_green; local 534 start_with_green = !start_with_green; 553 if( start_with_green ) 596 start_with_green = !start_with_green; 603 int Start_with_green; 617 int start_with_green = code == CV_BayerGB2GRAY || code == CV_BayerGR2GRAY local 686 int blue = Blue, start_with_green = Start_with_green; local 883 int start_with_green = code == CV_BayerGB2BGR || code == CV_BayerGR2BGR; local 1483 int start_with_green = Start_with_green, blue = Blue; local 1582 int start_with_green = code == CV_BayerGB2BGR_EA || code == CV_BayerGR2BGR_EA ? 1 : 0; local [all...] |
/external/opencv3/modules/cudaimgproc/src/ |
color.cpp | 69 void Bayer2BGR_8u_gpu(PtrStepSzb src, PtrStepSzb dst, bool blue_last, bool start_with_green, cudaStream_t stream); 71 void Bayer2BGR_16u_gpu(PtrStepSzb src, PtrStepSzb dst, bool blue_last, bool start_with_green, cudaStream_t stream); [all...] |
/external/opencv/cv/src/ |
cvcolor.cpp | [all...] |
/external/opencv3/modules/imgproc/test/ |
test_color.cpp | 1969 int start_with_green = code == CV_BayerGB2BGR_EA || code == CV_BayerGR2BGR_EA ? 1 : 0; local [all...] |