dukedoug
dukedoug

Reputation: 21

Lossy Image Compression Metrics

I'm wondering about what types of metrics I can use for comparing different (lossy) image compression methods (i.e., things other than compression ratio). For example, comparing JPEG, JPEG 2000, and JPEG XR on a set of different images.

Ideally I'd like to do this in a python notebook, but I'm open to any suggestions.

Thank you!

Upvotes: 0

Views: 252

Answers (1)

Benjamin
Benjamin

Reputation: 21

I think this boils down to comparing the lossy images to their original, i.e. measuring the loss of image quality. Measure the difference between the lossy image and its origin, do the same for other lossy images and compare the results.

How this can be done has been asked before and I have just added an answer mentioning some approaches.

Upvotes: 1

Related Questions