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

  /external/opencv/cv/src/
cvcolor.cpp 472 #define descale CV_DESCALE
533 dst[i] = (uchar)CV_DESCALE(t,csc_shift);
541 dst[i] = (uchar)CV_DESCALE(t,csc_shift);
618 dst[i] = (uchar)CV_DESCALE(t0, csc_shift);
642 dst[i] = (ushort)CV_DESCALE((unsigned)(src[0]*cb +
688 #define yuv_descale(x) CV_DESCALE((x), yuv_shift)
    [all...]
cvderiv.cpp 600 int s0 = CV_DESCALE(src0[i] - src1[i]*2 + src2[i] +
602 int s1 = CV_DESCALE(src0[i+1] - src1[i+1]*2 + src2[i+1] +
624 int s0 = CV_DESCALE(src0[i] - src2[i]*2 + src4[i] +
627 int s1 = CV_DESCALE(src0[i+1] - src2[i+1]*2 + src4[i+1] +
665 s0 = CV_DESCALE( s0, shift ); s1 = CV_DESCALE( s1, shift );
    [all...]
cvfilter.cpp     [all...]
cvsmooth.cpp 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...]
cvimgwarp.cpp 54 #define ICV_WARP_DESCALE_8U(x) CV_DESCALE((x), ICV_WARP_SHIFT*2)
    [all...]
  /external/opencv/cvaux/src/
cvhmmobs.cpp 102 #define DESCALE CV_DESCALE
  /external/opencv/cxcore/include/
cxmisc.h 253 #define CV_DESCALE(x,n) (((x) + (1 << ((n)-1))) >> (n))
    [all...]

Completed in 90 milliseconds