资源简介
是国外大牛编写的,对图像进行二维反卷积恢复代码,该代码主要针对图像的失焦模糊。
代码片段和文件信息
function [x]=deconvL2(Ifilt1wemax_it)
%note: size(filt1) is expected to be odd in both dimensions
if (~exist(‘max_it‘‘var‘))
max_it=200;
end
[nm]=size(I);
hfs1_x1=floor((size(filt12)-1)/2);
hfs1_x2=ceil((size(filt12)-1)/2);
hfs1_y1=floor((size(filt11)-1)/2);
hfs1_y2=ceil((size(filt11)-1)/2);
shifts1=[-hfs1_x1 hfs1_x2 -hfs1_y1 hfs1_y2];
hfs_x1=hfs1_x1;
hfs_x2=hfs1_x2;
hfs_y1=hfs1_y1;
hfs_y2=hfs1_y2;
m=m+hfs_x1+hfs_x2;
n=n+hfs_y1+hfs_y2;
N=m*n;
mask=zeros(nm);
mask(hfs_y1+1:n-hfs_y2hfs_x1+1:m-hfs_x2)=1;
tI=I;
I=zeros(nm);
I(hfs_y1+1:n-hfs_y2hfs_x1+1:m-hfs_x2)=tI;
x=tI([ones(1hfs_y1)1:endend*ones(1hfs_y2)][ones(1hfs_x1)1:endend*ones(1hfs_x2)]);
b=conv2(x.*maskfilt1‘same‘);
dxf=[1 -1];
dyf=[1;-1];
if (max(size(filt1)<25))
Ax=conv2(conv2(xf
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-06-26 09:38 DeconvolutionCode\
文件 1858 2007-04-29 17:23 DeconvolutionCode\deconvL2.m
文件 474 2007-04-29 17:23 DeconvolutionCode\deconvL2_frequency.m
文件 2511 2007-04-29 11:59 DeconvolutionCode\deconvL2_w.m
文件 1705 2007-07-02 20:56 DeconvolutionCode\deconvSps.m
文件 874 2007-07-02 20:58 DeconvolutionCode\demo.m
文件 714852 2007-04-29 12:23 DeconvolutionCode\demo_inp.mat
文件 448 2007-04-29 12:06 DeconvolutionCode\fftconv.m
相关资源
- naive_bayes_numeric 利用matlab实现的朴素贝
- fusion_change_detection SAR图像变化检测代
- RBF_Matlab_code 径向基函数的matlab 代码程
- spectralMattingCode 用于数字抠图的源代码
- Gaborpca Gabor小波变换与PCA的人脸识别代
- face 收集的最全的人脸识别代码 有小
- TVMMcode 国外一个博士写的图像复原的
- PDE 偏微分方程图像复原代码
-
thresholddenoisingba
sedonwavelet 小波阈值 -
Theimagetextureanalyssba
sedonthefractaldime - imagesegmentation 压缩文件里有四种图像
- rpca RobustPCA 是最近提出的非常新的图
- RBF-shenjingwangluohundunyuce RBF神经网络混
- m471 pid神经网络控制控制代码
- Radarsat2 将Radarsat2极化SAR图像数据转换
- ABC 是属于人工蜜蜂群优化算法的源代
- PDE_in_image_processing (1)MATLAB程序:其
- ensemblelearning 该源代码主要是利用ba
- aaa 关于遥感图像分类方面的程序源代
- tezheng 本人找到的非常好的几何特征提
- sift sift图像匹配的纯matlab代码
- xb 基于小波变换的图像增强代码
- GMM 本代码建立高斯混合模型(高斯多
- Zernike 亚像素边缘检测的matlab代码
- LBF “Implicit Active Contours Driven by Loca
- LCV “An efficientlocalChan–Vesemodelforima
- wavelet-matlab 基于小波变换的图像融合
- palm-recognition 掌纹识别代码
- tuxiangfenge Matlab边缘检测和区域生长图
- Kmeans-MATLAB 该代码能够实现K均值聚类
评论
共有 条评论