⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 14-4.m

📁 matlab6.5图形图像处理源程序.很多的。很好用的。很有帮助的。
💻 M
字号:
I = checkerboard(8); 
PSF = fspecial('gaussian',7,10); 
V = .0001; 
BlurredNoisy = imnoise(imfilter(I,PSF),'gaussian',0,V); 
WT = zeros(size(I));
WT(5:end-4,5:end-4) = 1; 
INITPSF = ones(size(PSF)); 
FUN = inline('PSF + P1','PSF','P1'); 
[J P]= deconvblind(BlurredNoisy,INITPSF,20,10*sqrt(V),WT,FUN,0);

subplot(221);imshow(BlurredNoisy); 
title('A = Blurred and Noisy'); 
subplot(222);imshow(PSF,[]); 
title('True PSF'); 
subplot(223);imshow(J); 
title('Deblured Image'); 
subplot(224);imshow(P,[]); 
title('Recovered PSF');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -