Error using huffman code
显示 更早的评论
I get error
Error using ==> huffmandict at 72
The symbol input must be a vector
Error in ==> Untitled3 at 5
[dict,avglen]=huffmandict(symbols,p)
wen using the code
A=imread('lena.jpg');
A=rgb2gray(A);
[symbols,p]=hist(A,double(unique(A)));
p=p/sum(p)
[dict,avglen]=huffmandict(symbols,p)
comp=huffmanenco(A,dict)
please help
回答(1 个)
Walter Roberson
2012-12-11
1 个投票
Remember that hist() applied to an array (rather than a vector) histograms by column. This behavior is not documented, though: what is documented is that you must hist() a vector.
12 个评论
kash
2012-12-11
kash
2012-12-11
Walter Roberson
2012-12-11
Yes, but your problem with symbols needing to be a vector is solved.
I am not surprised that your symbols repeat. I would rather expect that when you use counts as the symbols.
kash
2012-12-11
Walter Roberson
2012-12-11
You should be passing a vector of symbols at that point. And the p vector should be the vector of the probabilities of each symbol.
I cannot correct the code for you because you need to decide which symbols you are going to use. Symbols can be intended to represent different numbers of bits. For example if you often had 10 consecutive 0 bits, then it might be worth creating a symbol for that.
kash
2012-12-11
kash
2012-12-11
Walter Roberson
2012-12-11
The "solution" is for you to decide which symbols you are going to use, and calculate the appropriate probabilities. Just like I could tell you that there is a special on "Liver and Brussel Sprouts", but you need to decide for yourself what you want to order off the menu.
kash
2012-12-11
Walter Roberson
2012-12-11
So you are indicating to me that you want to have exactly two symbols, 'cA' and 'cH' ?
huffmandict({'cA', 'cH'}, p)
kash
2012-12-11
Walter Roberson
2012-12-11
I think you should go back and study the theory about what a "symbol" is for the purposes of huffman encoding.
类别
在 帮助中心 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!