Home
last modified time | relevance | path

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

/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/matchers/
DMSSIMMatcher.kt249 var numPixelsCounted = 0.0 in getMeans() variable
258 numPixelsCounted += 1.0 in getMeans()
261 avg0 /= numPixelsCounted in getMeans()
262 avg1 /= numPixelsCounted in getMeans()
285 var numPixelsCounted = 0 in getVariances() variable
297 numPixelsCounted += 1 in getVariances()
300 if (numPixelsCounted <= 1) { in getVariances()
305 var0 /= (numPixelsCounted - 1).toDouble() in getVariances()
306 var1 /= (numPixelsCounted - 1).toDouble() in getVariances()
307 varBoth /= (numPixelsCounted - 1).toDouble() in getVariances()