Lines Matching refs:uchar
75 template<> inline uchar MinOp<uchar>::operator ()(const uchar a, const uchar b) const { return CV_MIN_8U(a, b); }
76 template<> inline uchar MaxOp<uchar>::operator ()(const uchar a, const uchar b) const { return CV_MAX_8U(a, b); }
81 int operator()(const uchar*, uchar*, int, int) const { return 0; }
87 int operator()(const uchar**, uchar*, int, int, int) const { return 0; }
92 int operator()(uchar**, int, uchar*, int) const { return 0; }
102 int operator()(const uchar* src, uchar* dst, int width, int cn) const
144 int operator()(const uchar* src, uchar* dst, int width, int cn) const
176 int operator()(const uchar** src, uchar* dst, int dststep, int count, int width) const
192 const uchar* sptr = src[1] + i;
240 const uchar* sptr = src[0] + i;
280 int operator()(const uchar** _src, uchar* _dst, int dststep, int count, int width) const
409 int operator()(uchar** src, int nz, uchar* dst, int width) const
420 const uchar* sptr = src[0] + i;
456 int operator()(uchar** _src, int nz, uchar* _dst, int width) const
644 void operator()(const uchar* src, uchar* dst, int width, int cn)
698 void operator()(const uchar** _src, uchar* dst, int dststep, int count, int width)
793 std::vector<uchar> coeffs; // we do not really the values of non-zero
799 void operator()(const uchar** src, uchar* dst, int dststep, int count, int width, int cn)
843 std::vector<uchar*> ptrs;
860 return makePtr<MorphRowFilter<MinOp<uchar>,
878 return makePtr<MorphRowFilter<MaxOp<uchar>,
907 return makePtr<MorphColumnFilter<MinOp<uchar>,
925 return makePtr<MorphColumnFilter<MaxOp<uchar>,
955 return makePtr<MorphFilter<MinOp<uchar>, ErodeVec8u> >(kernel, anchor);
968 return makePtr<MorphFilter<MaxOp<uchar>, DilateVec8u> >(kernel, anchor);
1052 uchar* ptr = elem.ptr(i);
1239 AutoBuffer<uchar> buf(bufSize + 64);\
1240 uchar* buffer = alignPtr((uchar*)buf, 32);\
1281 if( kernel.at<uchar>(y, anchor.x) != 0 )
1285 if( kernel.at<uchar>(y,x) != 0 )
1291 if( kernel.at<uchar>(anchor.y, x) != 0 )
1295 if( kernel.at<uchar>(y,x) != 0 )
1426 if (kernel8u.at<uchar>(y, x) != 0)
1577 if (kernel8u.at<uchar>(y, x) != 0)
1944 dst.ptr()[i] = (uchar)(src->values[i] != 0);