Home | History | Annotate | Download | only in src

Lines Matching defs:stype

204     int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype);
230 if ((CV_8U == stype) && (CV_16S == dtype))
253 else if ((CV_16S == stype) && (CV_16S == dtype))
276 else if ((CV_32F == stype) && (CV_32F == dtype))
558 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype);
616 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype);
672 int stype = _src.type();
673 int sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype), esz = CV_ELEM_SIZE(stype);
805 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype);
814 ((stype == CV_8UC1 && ddepth == CV_16S) || (ddepth == CV_32F && stype == CV_32FC1)) && !ocl::useOpenCL())
913 Ptr<FilterEngine> fx = createSeparableLinearFilter(stype,
915 Ptr<FilterEngine> fy = createSeparableLinearFilter(stype,
923 int dy0 = std::min(std::max((int)(STRIPE_SIZE/(CV_ELEM_SIZE(stype)*src.cols)), 1), src.rows);