retrieving image after encoding
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
my code is
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);
I want to dispaly image after encoding,plz help
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 26 Dez. 2012
"comp" is not something that can be displayed. You need to do a huffman decoding of "comp" with "dict" in order to restore the image.
7 Kommentare
Walter Roberson
am 27 Dez. 2012
Each element of the output represents one bit. The original data was 8 bits per element.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!