资源简介
模糊图像去模糊处理,Amit等人发表的模糊核的估计算法,图像去模糊,得到清晰图像
代码片段和文件信息
function [ acProjections ] = calcACProjections( imgBlur psSize)
%calcACProjections Calculate auto-correlation of differentiated projections
% This function calculates f_theta = R_{d*P_theta(B)} for every theta needed
% to calculate the power spectrum of the given size. note that for the phase retrieval
% to be unique in the 2D case the power spectrum size should be twice the kernel size.
szK = psSize;
szK2 = 2*szK;
szC = szK+1;
f3 = [3 -32 168 -672 0 672 -168 32 -3]/840; % nine-point 1D differentiation filter
imgBlurPad = padarray(imgBlur[44]nan);
imgBlurX = conv2(imgBlurPadf3‘same‘);
imgBlurY = conv2(imgBlurPadf3‘‘same‘);
coords = zeros(szK^22);
idxs = zeros(szK^22);
j = 1;
for x=0:szK-1
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-08-13 14:11 NonBlindDeconvolution\
文件 2296 2012-03-02 15:18 NonBlindDeconvolution\deconvbregman.m
文件 3538 2012-03-02 15:04 NonBlindDeconvolution\fast_deconv_bregman.m
目录 0 2012-08-13 15:23 Utils\
文件 2274 2012-01-12 16:53 Utils\acorr.m
文件 1376 2012-07-01 16:50 Utils\calcAngles.m
文件 1649 2012-08-13 15:22 Utils\comp_upto_shift.m
文件 605 2012-08-13 15:22 Utils\fAbs.m
文件 331 2012-08-13 15:23 Utils\loadImage.m
文件 1238 2010-09-26 14:25 Utils\warpFast.m
文件 2720 2012-08-13 12:50 calcACProjections.m
文件 15998 2012-08-28 11:05 calcKernelFromProjections.m
文件 4938 2012-08-13 15:24 calcPSfromACProjections.m
文件 1585 2012-08-28 13:41 demo.m
文件 1193 2012-08-28 13:36 README.txt
文件 1858 2012-08-28 14:48 runBlindKernelEstimation.m
文件 746 2012-08-28 14:48 runNonBlindDeblurring.m
目录 0 2012-08-28 13:49 examples\
文件 647770 2012-08-28 11:07 examples\hollywood.jpg
文件 706094 2012-07-21 17:01 examples\I1.png
文件 1166810 2012-07-21 17:02 examples\I2.png
文件 1156039 2012-07-21 17:02 examples\I3.png
文件 925133 2012-08-28 13:32 examples\I4.png
文件 1726872 2012-08-28 13:40 examples\lyndsey.png
文件 2805706 2012-08-28 11:26 examples\venice.png
目录 0 2012-08-13 14:11 Mex\
文件 2414685 2011-07-26 22:01 Mex\libfftw3-3.dll
文件 973 2012-07-16 15:03 Mex\phaseRetrievalC.exp
文件 1892 2012-07-16 15:03 Mex\phaseRetrievalC.lib
文件 39936 2012-07-16 15:03 Mex\phaseRetrievalC.mexw64
文件 347136 2012-07-02 14:08 Mex\phaseRetrievalC.pdb
............此处省略1个文件信息
相关资源
- MOACO 多目标蚁群算法
- cw_vrp 节约算法
- PPG-heart-rate-detection- PPG心率检测文档
- FISTA 压缩感知恢复算法
- STO-estimation OFDM符号定时同步算法
- KLT-Tracking-algorithm KLT跟踪算法
- ISM_MATLAB 宽带信号的DOA估计算法
- 含三个例子的ICP点云配准算法
- FaceRec 人脸识别 PCA和SVM 人脸识别算法
- Code-of-Basic-PIO 鸽群优化算法
- 单目视觉中的位姿估算代码
- matlab的增强型烟花算法
- EWT算法
- Fisher-Score机器学习
- ALO 蚁狮(Antlion)搜索优化算法
- SphereLFOA Levy飞行特征的foa算法
- PSO-GA 粒子群算法求解多维约束函数极
- LDPC码的软判决译码算法
- 改进后的海森矩阵算法(Hessian )代码
- 蚁群算法三维路径规划
- 自适应滤波算法与实现
- MATLAB语言的CNN算法的例程
- matlab实现功率谱和相干性计算
- grey-wolf-optimizer 狼群算法的国外研究论
- hosvd算法
- fill_Matlab Matlab实现的孔洞填充算法
- MATLAB实现LTP和LBP算法
- EKF算法扩展卡尔曼滤波
- adaptive-sliding-mode-control 介绍自适应滑
- matlab实现滚动时域估计算法(MHE算法
评论
共有 条评论