Tag: SSIM

SSIM on Python

SSIM or Structural Similarity Index is metric that we could use to measure how similiar is two images. It measures images luminance, contrast and structure and compare those values on 2 images. Using skimage.metrics, we will count SSIM between 2 images. First, import numpy, cv2, skimage, panda...