Home | History | Annotate | Download | only in cuda

Lines Matching refs:bayer

209         Bayer2BGR<uchar> bayer;
210 bayer.apply(src, s_x, s_y, blue_last, start_with_green);
215 dst(d_y, d_x) = toDst<D>(bayer.res0);
217 dst(d_y, d_x + 1) = toDst<D>(bayer.res1);
219 dst(d_y, d_x + 2) = toDst<D>(bayer.res2);
221 dst(d_y, d_x + 3) = toDst<D>(bayer.res3);
331 Bayer2BGR<ushort> bayer;
332 bayer.apply(src, s_x, s_y, blue_last, start_with_green);
337 dst(d_y, d_x) = toDst<D>(bayer.res0);
339 dst(d_y, d_x + 1) = toDst<D>(bayer.res1);
385 // Bayer Demosaicing (Malvar, He, and Cutler)