OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSIM
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
MSSIMComparer.java
25
* https://ece.uwaterloo.ca/~z70wang/publications/
ssim
.pdf
63
double
SSIM
=
SSIM
(meanX, meanY, varX, varY, stdBoth);
64
SSIMTotal +=
SSIM
;
90
private double
SSIM
(double muX, double muY, double sigX, double sigY, double sigXY) {
91
double
SSIM
= (((2 * muX * muY) + CONSTANT_C1) * ((2 * sigXY) + CONSTANT_C2));
94
SSIM
/= denom;
95
return
SSIM
;
/external/libyuv/files/util/
ssim.cc
11
#include "../util/
ssim
.h" // NOLINT
34
//
SSIM
79
// Common final expression for
SSIM
, once the weighted sums are known.
299
double
SSIM
= 0.;
308
SSIM
+= GetSSIM(org, rec, i, j, image_width, image_height, stride);
313
#pragma omp parallel for reduction(+ :
SSIM
)
317
SSIM
+= GetSSIM(org, rec, i, j, image_width, image_height, stride);
320
SSIM
+= GetSSIMFullKernel(org, rec, i, j, stride, kiW[0]);
325
// zeros which won't contribute to the overall
SSIM
value (but we need
341
SSIM
+= GetSSIMFullKernel(scratch_org, scratch_rec, KERNEL + k, KERNEL
[
all
...]
/external/libvpx/libvpx/
tools.mk
16
tiny_ssim.SRCS += vpx_dsp/
ssim
.h vpx_scale/yv12config.h
20
tiny_ssim.DESCRIPTION = Generate
SSIM
/PSNR from raw .yuv files
/external/webrtc/webrtc/video/
full_stack_plot.py
43
SSIM
= 7
68
(
SSIM
, "
ssim
", "
SSIM
"),
Completed in 363 milliseconds