Searched defs:SSIM (Results 1 – 1 of 1) sorted by relevance
131 val SSIM = SSIM(meanX, meanY, varX, varY, stdBoth) in calculateSSIM() constant226 private fun SSIM(muX: Double, muY: Double, sigX: Double, sigY: Double, sigXY: Double): Double { in SSIM() method227 var SSIM = (2 * muX * muY + CONSTANT_C1) * (2 * sigXY + CONSTANT_C2) in SSIM() variable337 val SSIM: Double, constant in platform.test.screenshot.matchers.SSIMResult