I am not an expert, but AFAIK JPEG is a lossy format. The comparison is purely based on the size, and I couldn't find anything in the paper about data loss compared to other encoders. Can someone please explain why is this a fair comparison?
Guetzli: A New Open-Source JPEG Encoder
131–135 of 135 posts
Re: Guetzli: A New Open-Source JPEG Encoder
#132 echo Drag and drop one or multiple jpg or png files onto this batch file, to compress with google guetzli using a psychovisual model
if [%1]==[] goto :eof
:loop
echo compressing...
guetzli_windows_x86-64.exe -quality 84 %1 "%~dpn1_guetzlicompressed%~x1"
shift
if not [%1]==[] goto loop
echo DONE
i'm concerned about the color changes that are clearly visible throughout the whole image.Re: Guetzli: A New Open-Source JPEG Encoder
#133Re: Guetzli: A New Open-Source JPEG Encoder
#134if it may benefit anyone, i used this simple batch file to test out the lower bound -quality 84 with drag and drop of one/multiple images on win 86-64: echo Drag and drop one or multiple jpg or png files onto this batch file, to compress with google guetzli using a psychovisual model if [%1]==[] goto :eof :loop echo compressing... guetzli_windows_x86-64.exe -quality 84 %1 "%~dpn1_guetzlicompressed%~x1" shift if not […
Re: Guetzli: A New Open-Source JPEG Encoder
#135The Github README says, "Guetzli generates only sequential (nonprogressive) JPEGs due to faster decompression speeds they offer." What's the current thinking on progressive JPEGs? Although I haven't noticed them recently, I don't know whether they're still widely used.
I don't really understand why they would be slower to decode. It's really just the same data ordered differently in the file. I can see that if you try to render an incomplete file you might end up "wasting" effort blitting it to the screen and stuff before the rest of the data is decoded. But if thats a concern, one can simply rearrange the data back to scanline order and decode as normal?