PERFORMANCE OF COMPRESSION RATIO (CR ) IN JPEG
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
helo every one
i need to find comnpression ratio and performance of jpeg
i do jpeg compression for gray lena image , i have the
cr = numel of original/ numel of compress
performance% =(100-((1/cr)*100))
i get 43.6%
it not good why? .or my eq error
0 Kommentare
Antworten (1)
Rahul
am 18 Nov. 2024 um 9:19
In order to achieve the desired result, consider using 'imfinfo' function to read the compressed image and original image. The 'FileSize' property of the struct obtained after using this function can give desired results in terms of compression ratio performance. Here is an example:
compressedImageInfo = imfinfo('lena_compressed.jpg');
compressedSize = compressedImageInfo.FileSize;
% The 'compressedSize' value can be used in place of numel(compressedImage) in the given formula
The following MATLAB Answers also give insights regarding compression ratio calculation:
Refer to the following MathWorks documentations to know more:
Thanks.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!