how to perform two dimensional deconvolution in matlab?

40 次查看(过去 30 天)
result2=[600 600] matrix,
frq22=[600 600] matrix,
I have to deconvolve these two matrices.For this I am using the following code but it’s not working.
Img=deconv(result2,frq22,'same');

采纳的回答

Ridwan Alam
Ridwan Alam 2019-12-10
编辑:Ridwan Alam 2019-12-10
deconv() is defined only for vectors, not for matrices.
this might be helpful for matrices and images:
  3 个评论
Ridwan Alam
Ridwan Alam 2019-12-10
I don't know of any built-in function in Matlab. There are image deconvolution functions, but they don't work the way you are looking for. You can try the fft based approach I mentioned before. Or may try to create your own loop-based function. Good luck!

请先登录,再进行评论。

更多回答(1 个)

Viktor
Viktor 2024-7-6
You can use deconvwnr(I,psf,nsr) and set nsr = 0. This will result in the straightforward deconvolution.

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

产品


版本

R2014a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by