Huffman编码(哈夫曼编码)的Matlab实现

上传人:豆** 文档编号:45181000 上传时间:2021-12-06 格式:DOC 页数:4 大小:23KB
收藏 版权申诉 举报 下载
Huffman编码(哈夫曼编码)的Matlab实现_第1页
第1页 / 共4页
Huffman编码(哈夫曼编码)的Matlab实现_第2页
第2页 / 共4页
Huffman编码(哈夫曼编码)的Matlab实现_第3页
第3页 / 共4页
资源描述:

《Huffman编码(哈夫曼编码)的Matlab实现》由会员分享,可在线阅读,更多相关《Huffman编码(哈夫曼编码)的Matlab实现(4页珍藏版)》请在装配图网上搜索。

1、精品文档,仅供学习与交流,如有侵权请联系网站删除clear allfprintf('Reading data.')data=imread('cameraman.tif');data=uint8(data);%读入数据,并将数据限制为uint8fprintf('Done!n')%编码压缩fprintf('compressing data.');zipped,info=norm2huff(data);fprintf('Done!n')%解压缩fprintf('compressing data.');un

2、zipped=huff2norm(zipped,info);fprintf('Done!n')%测试是否无失真isOK=isequal(data(:),unzipped(:)%显示压缩效果whos data zipped unzippedfunction zipped,info=norm2huff(vector)ifisa(vector,'uint8'), error('input argument must be a uint8 vector')endvector=vector(:)'%将输入向量转换为行向量f=frequency(ve

3、ctor);%计算个元素出现的概率simbols=find(f=0);f=f(simbols);%将元素按出现的概率排列f,sortindex=sot(f);simbols=simbols(sortindex);%产生码字 generate the codeword as the 52 bits of a doublelen=length(simbols);simbols_index=num2cell(1:len);codeword_tmp=cell(len,1);while length(f)>1, index1=simbols_index1; index2=simbols_index

4、2; codeword_tmp(index1)=addnode(codeword_tmp(index1),uint8(0); codeword_tmp(index2)=addnode(codeword_tmp(index2),uint8(1); f=sum(f(1:2) f(3:end); simbols_index=index1 index2 simbols_index(3:end); %将数据重新排列,是两个节点的频率尽量与前一个节点的频率想当 resort data in order to have two nodes with lower frequency as first to f

5、,sortindex=sort(f); simbols_index=simbols_index(sortindex);end%对应相应的元素与码字codeword=cell(256:1);codeword(simbols)=codeword_tmp;%计算总的字符串长度len=0;for index=1:length(vector), len=len+length(codeworddouble(vector(index)+1);end%产生01序列string=repmat(uint8(0),1,len);pointer=1;for index=1:length(vector), code=c

6、odeworddouble(vector(index)+1; len=length(code); string(pointer+(0:len-1)=code; pointer=pointer+len;end%如果需要,加零len=length(string);pad=8-mod(len,8);if pad>0, string=string uint8(zeros(1,pad);end%保存实际有用的码字codeword=codeword(simbols);codelen=zeros(size(codeword);weights=2.(0:23);maxcodelen=0;for inde

7、x 1:length(codeword), len=length(codewordindex); if len>maxcodelen, maxcodelen=len; end if len>0, code=sum(weights(codewordindex=1); code=bitset(code,len+1); codewordindex=code; codelen(index)=len; endendcodeword=codeword:%计算压缩后的向量cols=length(string)/8;string=reshape(string,8,cols);weights=2.(

8、0:7);zipped=uint8(weights*double(string);%存储一个稀疏矩阵huffcodes=sparse(1,1);% init sparse matrixfor index=1:numel(codeword), huffcodes(codeword(index),1)=simbols(index);end%产生信息结构体info.pad=pad;info.ratio=cols./length(vector);info.length=length(vector);info.maxcodelen=maxcodelen;function codeword_new=add

9、node(codeword_old,item)codeword_new=cell(size(codeword_old);for index=1:length(codeword_old), codeword_newindex=item codeword_oldindex;endfunction vector=huff2norm(zipped,info)%HUFF2NORM Huffman 解码器%HUFF2NORM(X,INFO)根据信息体结构 info 返回向量 zipped 的解码结果%矩阵参数以X(:)形式输入ifisa(zipped,'uint8'), error(

10、9;input argument must be a uint8 vector')end%产生01序列len=length(zipped);string=repmat(uint8(0),1,len.*8);bitindex=1:8;for index+1:len, string(bitindex+8.*(index-1)=uint8(bitget(zipped(index),bitindex);end%调整字符串string=logical(string(:)');% remove 0 paddinglen=length(string);%解码weights=2.(0:51);

11、vector=repmat(uint8(0),1,info,length);vectorindex=1;codeindex=1;code=0;for index=1:len, code=bitset(code,codeindex,string(index); codeindex=codeindex+1; byte=decode(bitset(code,codeindex),info); if byte>0,% vector(vectorindex)=byte-1; codeindex=1; code=0; vectorindex=vectorindex+1; endendfunction

12、 byte=decode(code,info)byte=info.huffcodes(code);function f=frequency(vector)%FREQUENCY 计算元素出现概率ifisa(vector,'uint8'), error('input argument must be a uint8 vector')endf=repmat(0,1,256);%扫描向量len=length(vector);for index=0:256,% f(index+1)=sum(vector=uint8(index);end%归一化f=f./len;【精品文档】第 4 页

展开阅读全文
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!