Confusion whether the calculated compression ratio is correct or not.

1 回表示 (過去 30 日間)
Nidhi Kumari
Nidhi Kumari 2018 年 10 月 11 日
コメント済み: Walter Roberson 2019 年 7 月 30 日
I am applying compression on an image of 40KB(350x500x3 uint8) to get new image of 18KB(348x500x3 uint8) .I have used the following code for finding the compression ratio-
z='xyz.jpg';
z1='out.jpg';
k=imfinfo(z);
k1=imfinfo(z1);
ib=k.Width*k.Height*k.BitDepth/8;
cb=k1.Width*k1.Height*k1.BitDepth/8;
cr=ib/cb;
The value of cr comes to be 1.005747126436782 .
I don't know whether the value of cr is correct or not.Can anyone verify it? Also i would like to know how it is manually calculated via the formula.
  3 件のコメント
Nidhi Kumari
Nidhi Kumari 2018 年 10 月 11 日
So what is the correct coding approach according to the byte size?
Walter Roberson
Walter Roberson 2019 年 7 月 30 日

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeDenoising and Compression についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by