多媒体数据压缩╠基于matlab的jpeg基本系统的实现.doc
约34页DOC格式手机打开展开
多媒体数据压缩―基于matlab的jpeg基本系统的实现,多媒体数据压缩╠基于matlab的jpeg基本系统的实现页数 34字数 10511摘要:本论文主要介绍了jpeg的编码和解码过程以及在matlab平台上的具体程序实现。该程序的编码部分能把一张tif格式的24位真彩色图象进行jepg编码,压缩成以二进制形式保存的文件;通过相应的解码程序又可以把图象解压缩出来。在图象传送...
内容介绍
此文档由会员 赵亮 发布
多媒体数据压缩―基于matlab的JPEG基本系统的实现
页数 34 字数 10511
摘要:本论文主要介绍了JPEG的编码和解码过程以及在matlab平台上的具体程序实现。该程序的编码部分能把一张TIF格式的24位真彩色图象进行JEPG编码,压缩成以二进制形式保存的文件;通过相应的解码程序又可以把图象解压缩出来。在图象传送过程中,我们经常采用JPEG格式对静态图象进行编码。JPEG基本系统是一种有损编码,无法完全恢复出原图象,信息有一定的丢失,称为有损压缩。尽管我们希望能够无损压缩,但是通常有损压缩的压缩比(即原图象占的字节数与压缩后图象占的字节数之比,压缩比越大,说明压缩效率越高)比无损压缩的高。JPEG编码先把图象色彩RBG变成亮度Y和色度Cr、Cb,它利用人的视觉对色度不敏感的特点,减少一部分色度数据,以达到压缩。
JPEG采取多种编码方式,包含有行程编码(Run Length Coding)和哈夫曼(Huffman)编码,有很高的压缩比。在编码前,先对数据进行分块,离散余弦变换(DCT)及量化,保留能量大的低频信号,丢弃高频信号以达到压缩。解码时,进行熵解码,反量化,反离散余弦变换(IDCT)。
关键字:JPEG,有损压缩,行程编码,哈夫曼编码
Abstract: This paper introduces the encoding and decoding of JPEG and the specific realization of program on matlab platform。 The encoding part of this program can encode a picture whose format is 24-bits-turecolor TIF and save relevant data as binary system。 The decoding program can decode the compression data and reconstruct the origin image。 While conveying pictures we often encode still pictures into the style of JPEG。 JPEG is of lossy compression which can not recover all the image data, some data are losed。 Although we refer to non-lossy compression, however, the compression ratio of lossy compression( the times that data bytes before compression to that after compression )is bigger than that of non-lossy compression。 JPEG encoding translate image color from RBG to luminance Y and chroma Cr、Cb。 Because people’ eyes are less sensitive to chroma comparing with luminance , some of chroma data are abandoned to reduce data size。
JPEG envolves some kinds of ways of encoding including Run Length Coding and Huffman Coding, so it has high compression ratio。 Before Coding ,we divide data into blocks , DCT and quantify each block 。 The low-frequency signals that have more energy are maintained and others are rejected 。 While decoding , data stream are readed , decoded , inverse-quantified and then IDCT 。
Keyword: JPEG lossy compression Run Length Coding Huffman Coding
第一章 综 述
第二章 原 理
§2.1 JPEG的压缩原理
2.1.1 色彩模型
2.1.2 DCT (离散余弦变换)
2.1.3 重排列 DCT 结果
2.1.4 量化
2.1.5 0 RLE 编码
2.1.6 huffman 编码
§2.2 Huffman原理
第三章 设计思路
§3.1 JPEG编解码概述
§3.2 JPEG编码过程
§3.3 编码程序函数介绍
§3.4JPEG解码过程
§3.5 解码程序函数介绍
第四章 性能测试
§4.1 编解码前后图像对比
§4.2 原始图像与编码后文件的压缩比
第五章 问题分析
参考文献
附录A:部分源程序清单
附录B 无失真DPCM预测程序
参考文献:
[1] 黄贤武 王加俊 李家华 《数字图像处理与压缩编码技术》 电子科技大学出 版社 2000年12月
[2] Tom Lookabaugh. Dave Lindbergh. 著 李煜晖等译 《多媒体数字压缩原理与标准》 电子工业出版社 2000年8月
[3] 张兆礼 赵春晖 梅晓丹 《现代图像处理技术及MATLAB实现》 人民邮电出版社 2001年11月
[4] 刘志俭 潘献飞 连军想 《Matlab外部程序接口(6.X)》 科学出版社 2002年4月
页数 34 字数 10511
摘要:本论文主要介绍了JPEG的编码和解码过程以及在matlab平台上的具体程序实现。该程序的编码部分能把一张TIF格式的24位真彩色图象进行JEPG编码,压缩成以二进制形式保存的文件;通过相应的解码程序又可以把图象解压缩出来。在图象传送过程中,我们经常采用JPEG格式对静态图象进行编码。JPEG基本系统是一种有损编码,无法完全恢复出原图象,信息有一定的丢失,称为有损压缩。尽管我们希望能够无损压缩,但是通常有损压缩的压缩比(即原图象占的字节数与压缩后图象占的字节数之比,压缩比越大,说明压缩效率越高)比无损压缩的高。JPEG编码先把图象色彩RBG变成亮度Y和色度Cr、Cb,它利用人的视觉对色度不敏感的特点,减少一部分色度数据,以达到压缩。
JPEG采取多种编码方式,包含有行程编码(Run Length Coding)和哈夫曼(Huffman)编码,有很高的压缩比。在编码前,先对数据进行分块,离散余弦变换(DCT)及量化,保留能量大的低频信号,丢弃高频信号以达到压缩。解码时,进行熵解码,反量化,反离散余弦变换(IDCT)。
关键字:JPEG,有损压缩,行程编码,哈夫曼编码
Abstract: This paper introduces the encoding and decoding of JPEG and the specific realization of program on matlab platform。 The encoding part of this program can encode a picture whose format is 24-bits-turecolor TIF and save relevant data as binary system。 The decoding program can decode the compression data and reconstruct the origin image。 While conveying pictures we often encode still pictures into the style of JPEG。 JPEG is of lossy compression which can not recover all the image data, some data are losed。 Although we refer to non-lossy compression, however, the compression ratio of lossy compression( the times that data bytes before compression to that after compression )is bigger than that of non-lossy compression。 JPEG encoding translate image color from RBG to luminance Y and chroma Cr、Cb。 Because people’ eyes are less sensitive to chroma comparing with luminance , some of chroma data are abandoned to reduce data size。
JPEG envolves some kinds of ways of encoding including Run Length Coding and Huffman Coding, so it has high compression ratio。 Before Coding ,we divide data into blocks , DCT and quantify each block 。 The low-frequency signals that have more energy are maintained and others are rejected 。 While decoding , data stream are readed , decoded , inverse-quantified and then IDCT 。
Keyword: JPEG lossy compression Run Length Coding Huffman Coding
第一章 综 述
第二章 原 理
§2.1 JPEG的压缩原理
2.1.1 色彩模型
2.1.2 DCT (离散余弦变换)
2.1.3 重排列 DCT 结果
2.1.4 量化
2.1.5 0 RLE 编码
2.1.6 huffman 编码
§2.2 Huffman原理
第三章 设计思路
§3.1 JPEG编解码概述
§3.2 JPEG编码过程
§3.3 编码程序函数介绍
§3.4JPEG解码过程
§3.5 解码程序函数介绍
第四章 性能测试
§4.1 编解码前后图像对比
§4.2 原始图像与编码后文件的压缩比
第五章 问题分析
参考文献
附录A:部分源程序清单
附录B 无失真DPCM预测程序
参考文献:
[1] 黄贤武 王加俊 李家华 《数字图像处理与压缩编码技术》 电子科技大学出 版社 2000年12月
[2] Tom Lookabaugh. Dave Lindbergh. 著 李煜晖等译 《多媒体数字压缩原理与标准》 电子工业出版社 2000年8月
[3] 张兆礼 赵春晖 梅晓丹 《现代图像处理技术及MATLAB实现》 人民邮电出版社 2001年11月
[4] 刘志俭 潘献飞 连军想 《Matlab外部程序接口(6.X)》 科学出版社 2002年4月