how the compression ratio is calculated

i have a code
X=imread(file);
wavelet='haar'
level=2;
[c,s] = wavedec2(X,2,wavelet);
alpha = 1.5; m = 2.7*prod(s(1,:));
[thr,nkeep] = wdcbm2(c,s,alpha,m)
[xd,cxd,sxd,perf0,perfl2] = wdencmp('lvd',c,s,wname,n,thr,'h');
disp('Compression Ratio');disp(perf0);
the size of xd and X is same,plz tell how compression ratio is calculated
both images look like same ,how we can say it is compressed ny 84%
perf0 is 84%

 採用された回答

Wayne King
Wayne King 2012 年 12 月 24 日

0 投票

perf0 is the percentage of zeros in the wavelet coefficients. So 84% indicates that 84 percent of the wavelet coefficients have been set to 0.
perfl2 is the ratio (as a percentage) between the L2 norm of the compressed wavelet coefficients and the original (before compression) wavelet coefficients.
Yes, the output compressed image is of course the same size as the input, the point is that it is constructed from a much smaller set of wavelet coefficients

5 件のコメント

FIR
FIR 2012 年 12 月 24 日
so can we tell that the image is compressed to 84%
Wayne King
Wayne King 2012 年 12 月 24 日
yes, by that metric
FIR
FIR 2012 年 12 月 24 日
編集済み: FIR 2012 年 12 月 24 日
nnz(perf0) gives as 1
Wayne i sthere any compression that can make the image into smaller size,the code used me as of 3 to 4 lines as above,
Wayne King
Wayne King 2012 年 12 月 24 日
perf0 is just a scalar, so why would you use nnz() on that and expect something other than a 1?
FIR
FIR 2012 年 12 月 24 日
Wayne i sthere any compression that can make the image into smaller size, as of 3 to 4 lines as above,i tried huffman but matlab crashes

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeDenoising and Compression についてさらに検索

質問済み:

FIR
2012 年 12 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by