Home
last modified time | relevance | path

Searched refs:SSIMTotal (Results 1 – 1 of 1) sorted by relevance

/test/screenshot/screenshot/src/main/java/androidx/test/screenshot/matchers/
DMSSIMMatcher.kt47 val SSIMTotal = calculateSSIM(expected, given, width, height) in compareBitmaps() constant
50 "[MSSIM] Required SSIM: $threshold, Actual " + "SSIM: " + "%.3f".format(SSIMTotal) in compareBitmaps()
52 if (SSIMTotal >= threshold) { in compareBitmaps()
73 var SSIMTotal = 0.0 in calculateSSIM() variable
108 SSIMTotal += SSIM in calculateSSIM()
116 return SSIMTotal / windows.toDouble() in calculateSSIM()