Size increases after encoding

1 回表示 (過去 30 日間)
FIR
FIR 2012 年 12 月 25 日
Finally i got through the problem in huffman encoding,but the size after encoding increases,please help
A=imread('imagcp.bmp');
A=A(:);
YourVector=double(A);
symbols = unique(YourVector(:));
counts = hist(YourVector(:), symbols);
p = double(counts) ./ sum(counts)
[dict,avglen]=huffmandict(symbols,p);
comp=huffmanenco(A,dict);
numel(comp)
ans =
167343
>> numel(A)
ans =
65536

回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 12 月 25 日
Remember, comp is representing binary, and so is 1 bit per element, whereas your original data is at least 8 bits per element.
  6 件のコメント
FIR
FIR 2012 年 12 月 26 日
walter can you please help me in giving the code for restoring image content
Walter Roberson
Walter Roberson 2012 年 12 月 26 日

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

カテゴリ

Help Center および File ExchangeImport, Export, and Conversion についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by