HomeSort by relevance Sort by last modified time
    Searched full:ftzero (Results 1 - 3 of 3) sorted by null

  /external/opencv/cv/src/
cvstereobm.cpp 108 static void icvPrefilter( const CvMat* src, CvMat* dst, int winsize, int ftzero, uchar* buf )
122 tab[x] = (uchar)(x - OFS < -ftzero ? 0 : x - OFS > ftzero ? ftzero*2 : x - OFS + ftzero);
190 int ftzero = state->preFilterCap; local
215 tab[x] = (uchar)abs(x - ftzero);
398 int ftzero = state->preFilterCap; local
421 tab[x] = (uchar)abs(x - ftzero);
  /external/opencv3/modules/calib3d/src/
stereobm.cpp 110 static void prefilterNorm( const Mat& src, Mat& dst, int winsize, int ftzero, uchar* buf )
124 tab[x] = (uchar)(x - OFS < -ftzero ? 0 : x - OFS > ftzero ? ftzero*2 : x - OFS + ftzero);
191 prefilterXSobel( const Mat& src, Mat& dst, int ftzero )
199 tab[x] = (uchar)(x - OFS < -ftzero ? 0 : x - OFS > ftzero ? ftzero*2 : x - OFS + ftzero);
    [all...]
stereosgbm.cpp 338 int ftzero = std::max(params.preFilterCap, 15) | 1;
353 clipTab[k] = (PixType)(std::min(std::max(k - TAB_OFS, -ftzero), ftzero) + ftzero);
451 calcPixelCostBT( img1, img2, k, minD, maxD, pixDiff, tempBuf, clipTab, TAB_OFS, ftzero );
    [all...]

Completed in 79 milliseconds