资源简介
基于Matlab环境,实现了简易版的JPEG压缩技术,对输入图像编码并输出二进制文件,然后利用二进制文件解码,重构图像。
代码片段和文件信息
function [imgm0n0mn]=adjust_size(I)
[m0 n0 ~]=size(I);
m=m0;n=n0;
m=round(m/8)*8;
n=round(n/8)*8;
img=imresize(I[m n]);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 131 2013-05-24 23:47 Matlab-JPEG Encoder and Decoder\adjust_size.m
文件 591 2013-05-25 09:14 Matlab-JPEG Encoder and Decoder\block_dct.m
文件 78 2013-05-21 21:50 Matlab-JPEG Encoder and Decoder\block_idct.m
文件 19115 2001-06-28 19:54 Matlab-JPEG Encoder and Decoder\comp\Arith06.m
文件 30008 2004-09-02 14:28 Matlab-JPEG Encoder and Decoder\comp\Arith07.m
文件 981 2011-02-21 09:26 Matlab-JPEG Encoder and Decoder\comp\contents.m
文件 543 2011-02-21 09:25 Matlab-JPEG Encoder and Decoder\comp\entropy.m
文件 7086 2010-10-22 13:55 Matlab-JPEG Encoder and Decoder\comp\eob3.m
文件 25888 2010-10-22 13:37 Matlab-JPEG Encoder and Decoder\comp\Huff06.m
文件 2242 2000-06-21 18:44 Matlab-JPEG Encoder and Decoder\comp\HuffCode.m
文件 3883 2009-11-18 11:53 Matlab-JPEG Encoder and Decoder\comp\HuffLen.m
文件 6886 2006-08-02 14:28 Matlab-JPEG Encoder and Decoder\comp\HuffTabLen.m
文件 2514 2003-03-28 14:09 Matlab-JPEG Encoder and Decoder\comp\HuffTree.m
文件 10309 2009-06-08 13:09 Matlab-JPEG Encoder and Decoder\comp\Mat2Vec.m
文件 6257 2010-10-22 14:06 Matlab-JPEG Encoder and Decoder\comp\TestArith.m
文件 1728 2010-10-22 14:08 Matlab-JPEG Encoder and Decoder\comp\TestHuff.m
文件 1880 2010-10-22 13:51 Matlab-JPEG Encoder and Decoder\comp\uniquant.m
文件 161 2013-05-25 16:06 Matlab-JPEG Encoder and Decoder\desample_uv.m
文件 298 2013-05-21 21:44 Matlab-JPEG Encoder and Decoder\dezigzag.m
文件 576 2013-05-23 21:49 Matlab-JPEG Encoder and Decoder\dezigzag_scan.m
文件 55114 2013-05-25 15:34 Matlab-JPEG Encoder and Decoder\lena.bin
文件 786486 2013-05-19 14:46 Matlab-JPEG Encoder and Decoder\lena.bmp
文件 416 2013-05-07 17:14 Matlab-JPEG Encoder and Decoder\PSNR.m
文件 677 2013-05-25 16:07 Matlab-JPEG Encoder and Decoder\quanti.m
文件 339 2013-05-25 16:05 Matlab-JPEG Encoder and Decoder\rgb2yuv420.m
文件 2759 2013-05-25 16:05 Matlab-JPEG Encoder and Decoder\run_jpeg.m
文件 2930613 2013-05-25 15:21 Matlab-JPEG Encoder and Decoder\WP.bin
文件 250 2013-05-23 22:40 Matlab-JPEG Encoder and Decoder\yuv420_2_rgb.m
文件 671 2013-05-21 09:51 Matlab-JPEG Encoder and Decoder\zigzag.m
文件 224 2013-05-21 09:43 Matlab-JPEG Encoder and Decoder\zigzag_scan.m
............此处省略8个文件信息
相关资源
- 压缩感知(Compressed Sensing CS)matlab代
- 数字图像处理|Matlab-数字图像编码实
- JPEG编码标准及算法实现
- 9-JPEG2000编码方式的MATLAB实现+原理讲解
- JPEG解析包matlab
- MATLAB读取JPEG图片的DCT系数
- JPEG compression 压缩代码
- FCT(Fast Compress Tracking)目标跟踪程序
- 基于DCT的JPEG图像压缩
- 基于DCT_变换的JPEG图像压缩及其MATLA
- JPEG 压缩和解压 matlab 代码
- matlab开发-灰度图像的jpeg压缩
- JPEG基本系统的matlab实现
- JPEG图像压缩编码及其MATLAB仿真实现
- 实现jpeg压缩 的matlab程序
- matlab实现灰度图的jpeg编码过程
- JPEG2000代码_matlab
- JPEG压缩算法 MATLAB
- 基于matlab的jpeg编解码程序
- 64位的matlab的jpegtbx_1.4 jpeg tool box
- DCT变换压缩
- jpegtbx1.4
- JPEG图像压缩编码及其MATLAB仿真实现(
- jpeg压缩的matlab程序
- 任意大小矩阵的zigzag排序Matlab程序
- matlab实现JPEG
- JPEG编解码程序
- JPEG2000 编解码实现 matlab
- jpeg压缩的matlab实现
- jpeg图像压缩matlab程序
评论
共有 条评论