HomeSort by relevance Sort by last modified time
    Searched refs:absdiff (Results 1 - 25 of 50) sorted by null

1 2

  /external/opencv3/modules/photo/test/
test_inpaint.cpp 91 absdiff( orig, res1, diff1 );
92 absdiff( orig, res2, diff2 );
103 absdiff( exp1, res1, diff1 );
104 absdiff( exp2, res2, diff2 );
  /external/webrtc/webrtc/modules/video_processing/util/
denoiser_filter_c.cc 90 int absdiff = 0; local
93 absdiff = abs(diff);
97 if (absdiff <= 3 + shift_inc1) {
101 if (absdiff >= 4 + shift_inc1 && absdiff <= 7)
103 else if (absdiff >= 8 && absdiff <= 15)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 33 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
84 int absdiff = 0; local
87 absdiff = abs(diff);
90 if (absdiff <= 3)
97 if (absdiff >= 4 && absdiff <= 7)
99 else if (absdiff >= 8 && absdiff <= 15)
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
binary_func.hpp 72 CV_CUDEV_EXPR_BINARY_FUNC(absdiff)
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_avg_intrin_sse2.c 18 __m128i u0, s0, d0, diff, maxabsdiff, minabsdiff, negdiff, absdiff0, absdiff; local
31 absdiff = _mm_max_epi16(diff, negdiff);
32 maxabsdiff = _mm_max_epi16(absdiff0, absdiff);
33 minabsdiff = _mm_min_epi16(absdiff0, absdiff);
39 absdiff = _mm_max_epi16(diff, negdiff);
40 maxabsdiff = _mm_max_epi16(maxabsdiff, absdiff);
41 minabsdiff = _mm_min_epi16(minabsdiff, absdiff);
47 absdiff = _mm_max_epi16(diff, negdiff);
48 maxabsdiff = _mm_max_epi16(maxabsdiff, absdiff);
49 minabsdiff = _mm_min_epi16(minabsdiff, absdiff);
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 36 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
95 int absdiff = 0; local
98 absdiff = abs(diff);
102 if (absdiff <= 3 + shift_inc1)
109 if (absdiff >= 4 + shift_inc1 && absdiff <= 7)
111 else if (absdiff >= 8 && absdiff <= 15)
272 int absdiff = 0; local
275 absdiff = abs(diff)
    [all...]
  /external/opencv3/modules/core/misc/java/src/cpp/
core_manual.hpp 24 CV_EXPORTS_W void absdiff(InputArray src1, Scalar src2, OutputArray dst);
  /external/opencv3/modules/core/perf/
perf_arithm.cpp 73 PERF_TEST_P(Size_MatType, absdiff, TYPICAL_MATS_CORE_ARITHM)
85 //see ticket 1529: absdiff can be without saturation on 32S
90 TEST_CYCLE() absdiff(a, b, c);
107 //see ticket 1529: absdiff can be without saturation on 32S
112 TEST_CYCLE() absdiff(a, b, c);
  /external/opencv3/modules/calib3d/test/
test_affine3.cpp 78 cv::absdiff(expected, result.matrix, diff);
test_stereomatching.cpp 297 absdiff( computedDisp, groundTruthDisp, badPxlsMap );
556 absdiff( trueLeftDisp, Scalar(params.dispUnknVal), leftUnknMask );
561 absdiff( trueRightDisp, Scalar(params.dispUnknVal), rightUnknMask );
  /external/opencv3/modules/core/test/
test_misc.cpp 34 absdiff(t, u, d);
  /external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/
gpu-basics-similarity.cpp 176 absdiff(I1, I2, s1); // |I1 - I2|
204 cuda::absdiff(b.t1.reshape(1), b.t2.reshape(1), b.gs);
231 cuda::absdiff(t1.reshape(1), t2.reshape(1), gs);
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.cpp 210 template<typename T> T absdiff(T a, T b) {return a > b ? a - b : b - a;} function in namespace:android
270 int pdiff = absdiff(newSampleRate, prevSampleRate);
271 int adiff = absdiff(newSampleRate, filterSampleRate);
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.c 83 int diff, adj, absdiff, delta; local
104 absdiff = abs(diff);
106 if (absdiff <= absdiff_thresh(bs, increase_denoising)) {
110 switch (absdiff) {
  /external/opencv3/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/
video-input-psnr-ssim.cpp 139 absdiff(I1, I2, s1); // |I1 - I2|
  /external/opencv3/modules/java/android_test/src/org/opencv/test/
OpenCVTestCase.java 398 Core.absdiff(expected, actual, diff);
417 Core.absdiff(expected, actual, diff);
  /external/opencv3/modules/java/pure_test/src/org/opencv/test/
OpenCVTestCase.java 428 Core.absdiff(expected, actual, diff);
447 Core.absdiff(expected, actual, diff);
  /external/opencv3/modules/ts/src/
cuda_test.cpp 338 absdiff(m1.reshape(1), m2.reshape(1), diff);
421 absdiff(gold, actual, diff);
ocl_test.cpp 303 absdiff(gold, actual, diff);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
image_util_numpy_impl.py 72 return cv2.absdiff(image1, image2)
  /external/opencv3/modules/cudaarithm/perf/
perf_element_operations.cpp 392 TEST_CYCLE() cv::cuda::absdiff(d_src1, d_src2, dst);
400 TEST_CYCLE() cv::absdiff(src1, src2, dst);
427 TEST_CYCLE() cv::cuda::absdiff(d_src, s, dst);
435 TEST_CYCLE() cv::absdiff(src, s, dst);
    [all...]
  /external/opencv3/modules/java/android_test/src/org/opencv/test/android/
UtilsTest.java 167 Core.absdiff(m1, mUnPre, diff);
  /external/opencv3/modules/python/test/
test.py 74 absa1 = cv2.absdiff(a, 0)
  /external/ceres-solver/internal/ceres/
rotation_test.cc 679 double absdiff = fabs(x - y); local
681 return absdiff <= kTolerance;
683 double reldiff = absdiff / max(fabs(x), fabs(y));
    [all...]
  /external/opencv3/modules/cudaarithm/include/opencv2/
cudaarithm.hpp 140 @sa absdiff
142 CV_EXPORTS void absdiff(InputArray src1, InputArray src2, OutputArray dst, Stream& stream = Stream::Null());
    [all...]

Completed in 1626 milliseconds

1 2