搜索资源列表
-
0下载:
这个代码是jpeg压缩matlab代码,用于图形图象压缩,可以直接使用,编译通过-this code is jpeg compression Matlab code for the graphic image compression, can be used directly, compiled by
-
-
0下载:
我初次接触到压缩方法实验的JPEG压缩算法源代码,用matlab编写的,欢迎探讨-I first exposure to the experimental compression JPEG compression algorithm source code, prepared by the use of Matlab, welcome to explore
-
-
0下载:
附件里的文件是我已经提交给学校的一个工作。它演示了一个JPEG图像压缩算法的全部。使用一个矩阵操作实现DCT变换(提示MATLAB有一个自己的DCT和iDCT函数,可能它的会更高效),附件里的ReadMe.txt包含了详细的算法Restoration
-
-
1下载:
基于JPEG的图像压缩,觉得可用,同学的毕业设计作品-Based on the JPEG image compression that can be used, students design the graduation
-
-
0下载:
JPEG压缩源码,已经经过测试,请放心使用,欢迎下载。-JPEG compression source code, has been tested, please be assured use, are welcome to download.
-
-
0下载:
此程序是将.yuv文件读取并且进行JPEG压缩编码,程序可用-This procedure is. Yuv file to read and to JPEG compression, the program can be used
-
-
0下载:
图形图像处理中图像压缩的一些MATLAB代码,包括小波,jpeg等。-Graphic image compression image processing some MATLAB code, including wavelet, jpeg and so on.
-
-
4下载:
给予matlab的JPEG压缩程序,包含原始压缩图片,程序对灰度bmp图片进行JEPG编码,压缩成以0101形式的编码。JPEG编码先把图象色彩RBG变成亮度Y和色度Cr、Cb,它利用人的视觉对色度不敏感的特点,减少一部分色度数据,以达到压缩。 JPEG采取多种编码方式,包含有行程编码(Run Length Coding)和哈夫曼(Huffman)编码,有很高的压缩比。在编码前,先对数据进行分块,离散余弦变换(DCT)及量化,保留能量大的低频信号,丢弃高频信号以达到压缩。-Given to th
-
-
0下载:
图像处理,图像压缩,matlab 源代码-Image processing, image compression, matlab source code
-
-
0下载:
i had uploaded the matlab code for image processing jpeg compression
-
-
0下载:
基于matlab压缩jpeg的实现源代码-Based on the realization of jpeg compression matlab source code
-
-
1下载:
基于matlab的JPEG压缩源码,含压缩与解压缩,还有与原图的对比测试。-Matlab-based JPEG compression source, including compression and decompression, as well as comparison with the original image.
-
-
0下载:
根据JPEG压缩编码的基本压缩原理编写JPEG仿真程序,利用MATLAB软件对程序进行运行调试,验证了JPEG压缩编码算法的可行性。通过比对输出图像压缩前后实际效果,探讨压缩比,峰值信噪比等评价图像数据压缩程度及压缩质量的关键参数,对JPEG压缩编码算法的实用性和优越性进行了研究。- I have JPEG compression in-depth study on the basic principles of image data compression based on JPEG emul
-
-
0下载:
jpeg压缩matlab程序,可供学习图像视频编解码的同学学习-jpeg compression matlab program for learning image video codec students to learn
-
-
1下载:
通过matlab的jpeg压缩源码,代码详细,适合初学者-By the matlab jpeg compression source code in detail, suitable for beginners
-
-
0下载:
使用matlab编写的基于DCT变换的JPEG压缩的程序,对初学者有很强的参考价值。-
DCT based on the use of MATLAB transform JPEG compression procedures, for beginners there is a strong reference value.
-
-
0下载:
用MATLAB实现JPEG图形压缩过程,包括颜色空间转换、DCT变换、量化、编码(DC系数和AC系数编码)。-Using MATLAB graphics JPEG compression process, including color space conversion, DCT transform, quantization, coding (DC coefficient and AC coefficient coding).
-
-
1下载:
JPEG 是Joint Photographic Experts Group(联合图像专家小组)的缩写,是第一个国际图像压缩标准。JPEG图像压缩算法能够在提供良好的压缩性能的同时,具有比较好的重建质量,被广泛应用于图像、视频处理领域。本代码是JPEG图像压缩算法在MATLAB上实现(the method of image compression with JPEG implemented on MATLAB)
-
-
0下载:
通过DCT变换进行jpeg压缩,AC,DC系数都可以得到,还有zigzag(JPEG compression through DCT)
-
-
1下载:
编码:
(1)进行颜色转换,将RGB格式转换为YUV格式。
(2)将待编码的N×N的图像分解成(N/8)^ 2 个大小为8×8的子图像。
(3)对每个子图像进行DCT变换,得到各子图像的变换系数。这一步的实质是把空间域表示的图像转换成频率域表示的图像。
(4)对变换系数进行量化。
(5)进行Z字形重排
(6)使用霍夫曼变长变码编码器对量化的系数进行编码,得到压缩后的图像(数据)。
解码:
(1) 对压缩的图像数据进行解码,得到用量化系数表示的图像数据。
(2) 进行反Z字型重排
(3)用与编码时
-