HomeSort by relevance Sort by last modified time
    Searched refs:iscale (Results 1 - 4 of 4) sorted by null

  /external/opencv/cxcore/src/
cxconvert.cpp 992 int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); local
1015 int iscale = cvRound(scale*(1 << ICV_FIX_SHIFT)); local
    [all...]
  /external/opencv3/modules/imgproc/src/
deriv.cpp 757 int iscale = cvRound(scale), idelta = cvRound(delta); local
758 bool floatCoeff = std::fabs(delta - idelta) > DBL_EPSILON || std::fabs(scale - iscale) > DBL_EPSILON;
792 k.args(d2xarg, d2yarg, dstarg, iscale, idelta);
816 int iscale = saturate_cast<int>(scale), idelta = saturate_cast<int>(delta); local
817 bool floatScale = std::fabs(scale - iscale) > DBL_EPSILON, needScale = iscale != 1;
    [all...]
  /external/opencv/cv/src/
cvsmooth.cpp 252 int iscale = cvFloor(scale*(1 << BLUR_SHIFT)); local
283 int t0 = CV_DESCALE(s0*iscale, BLUR_SHIFT), t1 = CV_DESCALE(s1*iscale, BLUR_SHIFT);
291 int s0 = sum[i] + sp[i], t0 = CV_DESCALE(s0*iscale, BLUR_SHIFT);
    [all...]
cvfilter.cpp     [all...]

Completed in 1632 milliseconds