Log in

View Full Version : Ssim


jigole
5th December 2007, 11:26
Just a simple question: SSIM ranges between 0 and 1 but I have found in some threads that SSIM could range between 0 and 100. Can someone help? Whats is the right scale?
Thanks!!!

Dark Shikari
5th December 2007, 11:46
The latest SSIM filter used in Avisynth has a different scale than the original SSIM (which is the algorithm used in x264).

jigole
5th December 2007, 11:59
Thanks! I have find that SSIM can be scale by

100 * power(SIMM,8)

why is the formulae used?

foxyshadis
5th December 2007, 16:51
100 just gives it a nice percentage scale that people are more comfortable with. The power somewhat linearizes the scale vs. the raw values, because most people (again) aren't as comfortable with the exponential scale SSIM uses. (Especially since the asymptote is at 1, not 0.)

jigole
7th December 2007, 16:26
Thanks!