• 大小: 552B
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-13
  • 语言: Matlab
  • 标签: 图像压缩  

资源简介

基于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

评论

共有 条评论