Skip to content

Instantly share code, notes, and snippets.

@Bibimaw
Last active February 20, 2024 00:31
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save Bibimaw/8873663 to your computer and use it in GitHub Desktop.
Save Bibimaw/8873663 to your computer and use it in GitHub Desktop.
[C++] SSIM & PSNR quality metrics using OpenCV Mat structure
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <iostream>
using namespace std;
using namespace cv;
// quality-metric
namespace qm
{
#define C1 (float) (0.01 * 255 * 0.01 * 255)
#define C2 (float) (0.03 * 255 * 0.03 * 255)
// sigma on block_size
double sigma(Mat & m, int i, int j, int block_size)
{
double sd = 0;
Mat m_tmp = m(Range(i, i + block_size), Range(j, j + block_size));
Mat m_squared(block_size, block_size, CV_64F);
multiply(m_tmp, m_tmp, m_squared);
// E(x)
double avg = mean(m_tmp)[0];
// E(x²)
double avg_2 = mean(m_squared)[0];
sd = sqrt(avg_2 - avg * avg);
return sd;
}
// Covariance
double cov(Mat & m1, Mat & m2, int i, int j, int block_size)
{
Mat m3 = Mat::zeros(block_size, block_size, m1.depth());
Mat m1_tmp = m1(Range(i, i + block_size), Range(j, j + block_size));
Mat m2_tmp = m2(Range(i, i + block_size), Range(j, j + block_size));
multiply(m1_tmp, m2_tmp, m3);
double avg_ro = mean(m3)[0]; // E(XY)
double avg_r = mean(m1_tmp)[0]; // E(X)
double avg_o = mean(m2_tmp)[0]; // E(Y)
double sd_ro = avg_ro - avg_o * avg_r; // E(XY) - E(X)E(Y)
return sd_ro;
}
// Mean squared error
double eqm(Mat & img1, Mat & img2)
{
int i, j;
double eqm = 0;
int height = img1.rows;
int width = img1.cols;
for (i = 0; i < height; i++)
for (j = 0; j < width; j++)
eqm += (img1.at<double>(i, j) - img2.at<double>(i, j)) * (img1.at<double>(i, j) - img2.at<double>(i, j));
eqm /= height * width;
return eqm;
}
/**
* Compute the PSNR between 2 images
*/
double psnr(Mat & img_src, Mat & img_compressed, int block_size)
{
int D = 255;
return (10 * log10((D*D)/eqm(img_src, img_compressed)));
}
/**
* Compute the SSIM between 2 images
*/
double ssim(Mat & img_src, Mat & img_compressed, int block_size, bool show_progress = false)
{
double ssim = 0;
int nbBlockPerHeight = img_src.rows / block_size;
int nbBlockPerWidth = img_src.cols / block_size;
for (int k = 0; k < nbBlockPerHeight; k++)
{
for (int l = 0; l < nbBlockPerWidth; l++)
{
int m = k * block_size;
int n = l * block_size;
double avg_o = mean(img_src(Range(k, k + block_size), Range(l, l + block_size)))[0];
double avg_r = mean(img_compressed(Range(k, k + block_size), Range(l, l + block_size)))[0];
double sigma_o = sigma(img_src, m, n, block_size);
double sigma_r = sigma(img_compressed, m, n, block_size);
double sigma_ro = cov(img_src, img_compressed, m, n, block_size);
ssim += ((2 * avg_o * avg_r + C1) * (2 * sigma_ro + C2)) / ((avg_o * avg_o + avg_r * avg_r + C1) * (sigma_o * sigma_o + sigma_r * sigma_r + C2));
}
// Progress
if (show_progress)
cout << "\r>>SSIM [" << (int) ((( (double)k) / nbBlockPerHeight) * 100) << "%]";
}
ssim /= nbBlockPerHeight * nbBlockPerWidth;
if (show_progress)
{
cout << "\r>>SSIM [100%]" << endl;
cout << "SSIM : " << ssim << endl;
}
return ssim;
}
void compute_quality_metrics(char * file1, char * file2, int block_size)
{
Mat img_src;
Mat img_compressed;
// Loading pictures
img_src = imread(file1, CV_LOAD_IMAGE_GRAYSCALE);
img_compressed = imread(file2, CV_LOAD_IMAGE_GRAYSCALE);
img_src.convertTo(img_src, CV_64F);
img_compressed.convertTo(img_compressed, CV_64F);
int height_o = img_src.rows;
int height_r = img_compressed.rows;
int width_o = img_src.cols;
int width_r = img_compressed.cols;
// Check pictures size
if (height_o != height_r || width_o != width_r)
{
cout << "Images must have the same dimensions" << endl;
return;
}
// Check if the block size is a multiple of height / width
if (height_o % block_size != 0 || width_o % block_size != 0)
{
cout << "WARNING : Image WIDTH and HEIGHT should be divisible by BLOCK_SIZE for the maximum accuracy" << endl
<< "HEIGHT : " << height_o << endl
<< "WIDTH : " << width_o << endl
<< "BLOCK_SIZE : " << block_size << endl
<< endl;
}
double ssim_val = ssim(img_src, img_compressed, block_size);
double psnr_val = psnr(img_src, img_compressed, block_size);
cout << "SSIM : " << ssim_val << endl;
cout << "PSNR : " << psnr_val << endl;
}
}
@vijaybabuwagmare
Copy link

output please

@cuongpd95
Copy link

Hello,
Thanks for your code. But I am confusing. Please explain why avg use k,l and sigma use m,n in below code block?
double avg_o = mean(img_src(Range(k, k + block_size), Range(l, l + block_size)))[0];
double avg_r = mean(img_compressed(Range(k, k + block_size), Range(l, l + block_size)))[0];
double sigma_o = sigma(img_src, m, n, block_size);
double sigma_r = sigma(img_compressed, m, n, block_size);
double sigma_ro = cov(img_src, img_compressed, m, n, block_size);

Please help!

@harshsharma22
Copy link

block size meaning in SSIM ??

@rusty-labs
Copy link

Hi,
There is a bug in the code
sd = sqrt(avg_2 - avg * avg);

avg_2 - avg * avg can be < 0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment