I want to find similarity between two images.I use SSIM. What does low and high values of SSIM indicates in terms of similarity.
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    senthil vadivu
 il 2 Gen 2017
  
    
    
    
    
    Commentato: Image Analyst
      
      
 il 26 Apr 2017
            I want to find similarity between two images.I use SSIM. What does low and high values of SSIM indicates in terms of similarity.
2 Commenti
  Asim Maqsood
 il 26 Apr 2017
				
      Modificato: Image Analyst
      
      
 il 26 Apr 2017
  
			And what does it mean if we have a negative answer like -0.5 or -1?
  Image Analyst
      
      
 il 26 Apr 2017
				From the formula in the help, it looks like the only way you could get a negative number is if one of the images has a negative mean value.
Risposta accettata
  Image Analyst
      
      
 il 2 Gen 2017
        If you open the example script from the help, and change this line:
[ssimval, ssimmap] = ssim(A,ref);
to
[ssimval, ssimmap] = ssim(ref,ref);
you'll see that the ssim goes from 0.94 to 1.00, showing that if the images are exactly the same, the ssim is 1 and the more different they are, the lower the ssim value, down to as far as zero.
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!