HomeSort by relevance Sort by last modified time
    Searched full:psnr (Results 76 - 100 of 156) sorted by null

1 2 34 5 6 7

  /external/opencv3/modules/videoio/test/
test_ffmpeg.cpp 368 double psnr = cvtest::PSNR(actual, reference); local
369 if (psnr < eps)
372 ts->printf(SUM, "\nPSNR: %lf\n", psnr);
  /external/webrtc/webrtc/video/
video_quality_test.h 73 // stream/layer (to ignore the PSNR and SSIM calculation errors).
full_stack.cc 46 // TODO(pbos): Decide on psnr/ssim thresholds for foreman_cif.
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vp8.h 81 * the best objective measure (using the PSNR metric) set post_proc_flag
vpx_encoder.h 74 #define VPX_CODEC_CAP_PSNR 0x10000 /**< Can issue PSNR packets */
91 #define VPX_CODEC_USE_PSNR 0x10000 /**< Calculate PSNR on each frame */
158 VPX_CODEC_PSNR_PKT, /**< PSNR statistics for this frame */
191 double psnr[4]; /**< PSNR, total/y/u/v */ member in struct:vpx_codec_cx_pkt::__anon30288::vpx_psnr_pkt
192 } psnr; /**< data for PSNR packet */ member in union:vpx_codec_cx_pkt::__anon30288
    [all...]
  /external/libvpx/libvpx/vpx/
vpx_encoder.h 77 #define VPX_CODEC_CAP_PSNR 0x10000 /**< Can issue PSNR packets */
97 #define VPX_CODEC_USE_PSNR 0x10000 /**< Calculate PSNR on each frame */
166 VPX_CODEC_PSNR_PKT, /**< PSNR statistics for this frame */
171 VPX_CODEC_SPATIAL_SVC_LAYER_PSNR, /**< PSNR for each layer in this frame*/
206 double psnr[4]; /**< PSNR, total/y/u/v */ member in struct:vpx_codec_cx_pkt::__anon16663::vpx_psnr_pkt
207 } psnr; /**< data for PSNR packet */ member in union:vpx_codec_cx_pkt::__anon16663
    [all...]
vp8.h 81 * the best objective measure (using the PSNR metric) set post_proc_flag
  /external/webrtc/talk/media/base/
testutils.h 189 // PSNR formula: psnr = 10 * log10 (Peak Signal^2 / mse)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
libvpx_srcs.txt 108 vp8/encoder/psnr.c
109 vp8/encoder/psnr.h
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
libvpx_srcs.txt 108 vp8/encoder/psnr.c
109 vp8/encoder/psnr.h
  /external/libvpx/libvpx/test/
error_resilience_test.cc 57 psnr_ += pkt->data.psnr.psnr[0];
166 // std::cout << "Mismatch frame psnr: " << mismatch_psnr << "\n";
293 // Note the Average Mismatch PSNR is the average of the PSNR between
297 std::cout << " Mismatch PSNR: "
  /cts/tests/tests/media/src/android/media/cts/
Vp8CodecTestBase.java 51 * calculate PSNR values for various bitrates.
1895 double psnr = 10 * Math.log10((double)255 * 255 \/ meanSquareError); local
    [all...]
  /external/libvpx/libvpx/
CHANGELOG 354 Improved activity masking (lower PSNR impact for same SSIM boost)
381 vpxenc --psnr shows a summary when encode completes
414 Best quality mode improved PSNR 6.3%, and SSIM 6.1%. This release
416 SSIM at the expense of PSNR. For now, this feature is available with
504 vpxenc --psnr now shows the average/overall PSNR at the end
546 Over 7% overall PSNR improvement (6.3% SSIM) in "best" quality
tools_common.c 281 const double psnr = 10.0 * log10(samples * peak * peak / sse); local
282 return psnr > kMaxPSNR ? kMaxPSNR : psnr;
  /external/opencv3/3rdparty/libwebp/enc/
webpenc.c 310 stats->PSNR[0] = (float)GetPSNR(sse[0], size);
311 stats->PSNR[1] = (float)GetPSNR(sse[1], size / 4);
312 stats->PSNR[2] = (float)GetPSNR(sse[2], size / 4);
313 stats->PSNR[3] = (float)GetPSNR(sse[0] + sse[1] + sse[2], size * 3 / 2);
314 stats->PSNR[4] = (float)GetPSNR(sse[3], size);
frame.c 713 int nb_mbs, float* const PSNR, int percent_delta) {
740 if (PSNR) {
741 *PSNR = (float)(10.* log10(255. * 255. * pixel_count / distortion));
782 float PSNR;
784 const int size = OneStatPass(enc, q, RD_OPT_BASIC, nb_mbs, &PSNR,
787 printf("#%d size=%d PSNR=%.2f q=%.2f\n", pass, size, PSNR, q);
791 criterion = (PSNR < enc->config_->target_PSNR);
  /external/webp/src/enc/
webpenc.c 263 stats->PSNR[0] = (float)GetPSNR(sse[0], size);
264 stats->PSNR[1] = (float)GetPSNR(sse[1], size / 4);
265 stats->PSNR[2] = (float)GetPSNR(sse[2], size / 4);
266 stats->PSNR[3] = (float)GetPSNR(sse[0] + sse[1] + sse[2], size * 3 / 2);
267 stats->PSNR[4] = (float)GetPSNR(sse[3], size);
  /external/opencv3/modules/core/perf/opencl/
perf_arithm.cpp 1044 ///////////// PSNR ////////////////////////
1048 OCL_PERF_TEST_P(PSNRFixture, PSNR,
1057 double psnr = 0; local
1061 OCL_TEST_CYCLE() psnr = cv::PSNR(src1, src2);
1063 SANITY_CHECK(psnr, 1e-4, ERROR_RELATIVE);
    [all...]
  /external/ImageMagick/ImageMagick/script/
webp.html 134 <td>maximum number of passes to target compression size or PSNR.</td>
152 <td>target-psnr=<var>value</var></td>
  /external/ImageMagick/www/
webp.html 138 <td>maximum number of passes to target compression size or PSNR.</td>
156 <td>target-psnr=<var>value</var></td>
  /external/libvpx/libvpx/vpx_dsp/
psnrhvs.c 105 /*In the PSNR-HVS-M paper[1] the authors describe the construction of
109 been normalized and then squared." Their CSF matrix (from PSNR-HVS)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/
libvpx_srcs.txt 147 vp8/encoder/psnr.c
148 vp8/encoder/psnr.h
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
libvpx_srcs.txt 114 vp8/encoder/psnr.c
115 vp8/encoder/psnr.h
  /external/libavc/test/encoder/
main.c 47 #include "psnr.h"
117 PSNR,
172 { "--", "--psnr", PSNR, "Enable PSNR computation (Disable while benchmarking performance) \n" },
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
encode_test_driver.h 204 // Hook to be called on every PSNR packet.

Completed in 207 milliseconds

1 2 34 5 6 7