Searched defs:SSIM (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/matchers/ |
H A D | MSSIMMatcher.kt | 131 val SSIM = SSIM(meanX, meanY, varX, varY, stdBoth) in calculateSSIM() constant 226 private fun SSIM(muX: Double, muY: Double, sigX: Double, sigY: Double, sigXY: Double): Double { in SSIM() method in platform.test.screenshot.matchers.MSSIMMatcher 227 var SSIM = (2 * muX * muY + CONSTANT_C1) * (2 * sigXY + CONSTANT_C2) in SSIM() variable 337 val SSIM: Double, constant in platform.test.screenshot.matchers.SSIMResult
|
/aosp_15_r20/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
H A D | MSSIMComparer.java | 78 double SSIM = SSIM(meanX, meanY, varX, varY, stdBoth); in verifySame() local 106 private double SSIM(double muX, double muY, double sigX, double sigY, double sigXY) { in SSIM() method in MSSIMComparer 107 double SSIM = (((2 * muX * muY) + CONSTANT_C1) * ((2 * sigXY) + CONSTANT_C2)); in SSIM() local
|
/aosp_15_r20/external/webrtc/modules/video_coding/codecs/test/ |
H A D | plot_webrtc_test_logs.py | 40 SSIM = ('avg_ssim', 'SSIM') variable
|
/aosp_15_r20/external/webrtc/video/ |
H A D | full_stack_tests_plot.py | 42 SSIM = 7 variable
|
/aosp_15_r20/external/libyuv/util/ |
H A D | ssim.cc | 302 double SSIM = 0.; in CalcSSIM() local
|