我正在研究基于 MATLAB 中的小波的图像压缩......我已经构建了以下代码。一切正常,但压缩图像显示为纯黑白图像。如果我将分解级别设为 1,它将压缩图像显示为全黑,对于分解级别:2,它给出全白图像。对于分解级别 3,它给出 3/4 白色和 1/4 黑色。 。 请帮忙。我使用的代码是
clear all;
close all;
input_image1=imread('C:\Users\Prem\Documents\MATLAB\mandrill.jpg');
input_image=imnoise(input_image1,'speckle',.01);
figure;
imshow(input_image);
n=input('enter the decomposition level=');
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters('haar');
[c,s]=wavedec2(input_image,n,Lo_D,Hi_D);
disp(' the decomposition vector Output is');
disp(c);
[thr,nkeep] = wdcbm2(c,s,1.5,3*prod(s(1,:)));
[compressed_image,TREED,comp_ratio,PERFL2] =wpdencmp(thr,'s',n,'haar','threshold',5,1);
disp('compression ratio in percentage');
disp(comp_ratio);
re_ima1 = waverec2(c,s,'haar');
re_ima=uint8(re_ima1);
subplot(1,3,1);
imshow(input_image);
title('i/p image');
subplot(1,3,2);
imshow(compressed_image);
title('compressed image');
subplot(1,3,3);
imshow(re_ima);
title('reconstructed image');