Hello,
I'm considering webp as a compression format for radiology images.
I did a very basic benchmark - tried to encode a bulk of images as both lossy & lossless, comparing to the default encoding algorithm of .Net (to JPEG and PNG).
The results look promising on the compression side (up to 50% on some images), however encoding times are very slow - x5 slower on lossy, x10 for lossless compression.
For lossy I'm using compression quality of 85 (as it yields similar PSNR result to that of the default .Net JPEG encoding).
For the webp compression I used the basic API's WebPEncodeRGB and WebPEncodeLosslessRGB.
Also tried to encode with cwebp -v, to make sure nothing is wrong with my measurements, and it produces similar results.
Some web resources (mostly from 2012) indicate this was the original encoding performance of webp.
I'm wondering if any there were any improvements since then.
Is there any way to optimize encoding times so they match up to other compression algorithms?
Any help will be appreciated!
Yonatan