5

Is there any open source C implementation for PSNR, SSIM or MSE that doesn't rely on OpenCV?

Thanks.

rkellerm
  • 5,362
  • 8
  • 58
  • 95

2 Answers2

3

IQA provides a C implementation with no dependencies of the following image quality metrics:

  • MSE
  • PSNR
  • SSIM
  • MS-SSIM
  • MS-SSIM*
pockethook
  • 122
  • 1
  • 2
  • 10
1

Google's WebM project provides these calculations in the libvpx library. Specifically in the VP8 encoder.

Then there is also NetPBM, FFMPEG and the x264 Project.

Seth
  • 2,683
  • 18
  • 18