资源简介
基于dft的图像压缩matlab实现.
代码片段和文件信息
%demo2_compress_image
clc;
close all;
img = imread(‘squirrel2.jpg‘);
figure imshow(img);
level = 5; %decomposition level
basis = ‘sym8‘;
[c l] = wavedec2(img level basis);
opt = ‘gbl‘; %use the global threshold
thr = 200; %threshold value;
sorh = ‘h‘; % Hard thresholding
keepapp = 1; % Approximation coefficients cannot be thresholded
[xdcxdlxdperf0perfl2] = wdencmp(optclbasislevelthrsorhkeepapp);
subplot(121) subimage(img)
title(‘Original Image‘)
subplot(122) image(mat2gray(xd))
title([‘Compressed Image - Global Threshold = ‘ num2str(thr)])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 603 2012-10-25 20:57 demo2_compress_image.m
- 上一篇:粒子群SVM.rar
- 下一篇:信息熵·互信息代码
相关资源
- 图像行程编码
- jpeg图像压缩编解码程序
- 分形图像压缩编码的Matlab实现
- 基于dct的图像压缩解压缩
- dct图像压缩的matlab实现
- 基于DCT的图像压缩编码算法的MATLAB实
- 基于MATLAB的图像压缩程序(包附各种
- 基于小波变换的图像压缩(matlab)
- BP神经网络实现图像压缩
- svd图像压缩(SVD_comprecession)
- DTCWT 适合进行图像压缩
- romp 图像处理
- Wavelet_OMP
- imagesegmentation 压缩文件里有四种图像
- OMP
- sparse
- KSVD 图像稀疏编码的方法
- ISAR-Imaging-With-MATLAB-Algorithms 这本书提
- fusion
-
CS-ba
sed-on-FFT-or-DWT 图像压缩感知 - softwarerelease JPEG2000压缩图像质量评价
- compression 主要用于图像经小波变换压
- DWTzip 基于Matlab的JPEG2000图像压缩实现
- matlab实现分形图像压缩算法
- 基于matlab霍夫曼图像压缩重建.zip
- 图像的压缩——PCA变换K-L变换.rar
- matlab用YCbCr实现图像压缩
- 基于离散余弦变换的JPEG图像压缩
- matlab实现DCT变换和量化
评论
共有 条评论