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

  /external/opencv3/modules/imgproc/src/opencl/
warp_affine.cl 57 #define INTER_BITS 5
58 #define INTER_TAB_SIZE (1 << INTER_BITS)
60 #define AB_BITS max(10, (int)INTER_BITS)
64 #define ROUND_DELTA (1 << (AB_BITS - INTER_BITS - 1))
151 X0 = X0 >> (AB_BITS - INTER_BITS);
152 Y0 = Y0 >> (AB_BITS - INTER_BITS);
154 short sx = convert_short_sat(X0 >> INTER_BITS), sy = convert_short_sat(Y0 >> INTER_BITS);
280 X0 = X0 >> (AB_BITS - INTER_BITS);
281 Y0 = Y0 >> (AB_BITS - INTER_BITS);
    [all...]
warp_perspective.cl 57 #define INTER_BITS 5
58 #define INTER_TAB_SIZE (1 << INTER_BITS)
60 #define AB_BITS max(10, (int)INTER_BITS)
134 short sx = convert_short_sat(X >> INTER_BITS);
135 short sy = convert_short_sat(Y >> INTER_BITS);
196 short sx = convert_short_sat(X >> INTER_BITS) - 1;
197 short sy = convert_short_sat(Y >> INTER_BITS) - 1;
remap.cl 70 INTER_BITS = 5,
71 INTER_TAB_SIZE = 1 << INTER_BITS,
297 int dy = (map2Value >> INTER_BITS) < (INTER_TAB_SIZE >> 1) ? 1 : 0;
357 WT2 u = (WT2)(map2Value & (INTER_TAB_SIZE - 1), map2Value >> INTER_BITS) / (WT2)(INTER_TAB_SIZE);
417 int sx = convert_int_sat_rtz(mad(xf, INTER_TAB_SIZE, 0.5f)) >> INTER_BITS;
418 int sy = convert_int_sat_rtz(mad(yf, INTER_TAB_SIZE, 0.5f)) >> INTER_BITS;
  /external/opencv3/modules/imgproc/src/
imgwarp.cpp     [all...]
undistort.cpp 151 m1[j*2] = (short)(iu >> INTER_BITS);
152 m1[j*2+1] = (short)(iv >> INTER_BITS);
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 909 inter_func(((yMy[dx] >> INTER_BITS) & (INTER_TAB_SIZE - 1)) / static_cast<float>(INTER_TAB_SIZE), w + ksize);
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp 275 INTER_BITS = 5,
276 INTER_BITS2 = INTER_BITS * 2,
277 INTER_TAB_SIZE = 1 << INTER_BITS,
    [all...]
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java 135 INTER_BITS = 5,
136 INTER_BITS2 = INTER_BITS * 2,
137 INTER_TAB_SIZE = 1 << INTER_BITS,
    [all...]
  /external/opencv3/modules/calib3d/src/
fisheye.cpp 477 m1[j*2+0] = (short)(iu >> cv::INTER_BITS);
478 m1[j*2+1] = (short)(iv >> cv::INTER_BITS);
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 102 milliseconds