资源简介

模糊图像去模糊处理,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个文件信息

评论

共有 条评论