OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MSE
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
PSNRComparer.java
42
float
MSE
= 0f;
63
MSE
+= (Color.red(ideal[index]) - Color.red(given[index])) *
65
MSE
+= (Color.blue(ideal[index]) - Color.blue(given[index])) *
67
MSE
+= (Color.green(ideal[index]) - Color.green(given[index])) *
71
MSE
/= (interestingRegions * REGION_SIZE * 3);
73
float fraction = (MAX * MAX) /
MSE
;
/external/libvpx/libvpx/vpx_dsp/
variance.c
222
#define
MSE
(W, H) \
254
MSE
(16, 16)
255
MSE
(16, 8)
256
MSE
(8, 16)
257
MSE
(8, 8)
Completed in 133 milliseconds