Lines Matching refs:srcmat
509 ParallelLoopBody(), srcmat(_srcmat), dstmat(_dstmat), Start_with_green(_start_with_green),
520 const T* bayer0 = srcmat.ptr<T>();
521 int bayer_step = (int)(srcmat.step/sizeof(T));
601 Mat srcmat;
610 static void Bayer2Gray_( const Mat& srcmat, Mat& dstmat, int code )
615 Size size = srcmat.size();
631 Bayer2Gray_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat,
669 srcmat(_srcmat), dstmat(_dstmat), Start_with_green(_start_with_green), Blue(_blue), size(_size)
680 int bayer_step = (int)(srcmat.step/sizeof(T));
681 const T* bayer0 = srcmat.ptr<T>() + bayer_step * range.start;
871 Mat srcmat;
878 static void Bayer2RGB_( const Mat& srcmat, Mat& dstmat, int code )
881 Size size = srcmat.size();
892 Bayer2RGB_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat, start_with_green, blue, size);
913 static void Bayer2RGB_VNG_8u( const Mat& srcmat, Mat& dstmat, int code )
915 const uchar* bayer = srcmat.ptr();
916 int bstep = (int)srcmat.step;
919 Size size = srcmat.size();
927 Bayer2RGB_<uchar, SIMDBayerInterpolator_8u>( srcmat, dstmat, code );