how to perform two dimensional deconvolution in matlab?

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');

 Réponse acceptée

Ridwan Alam
Ridwan Alam le 10 Déc 2019
Modifié(e) : Ridwan Alam le 10 Déc 2019

0 votes

deconv() is defined only for vectors, not for matrices.
this might be helpful for matrices and images:

3 commentaires

Is there any function for deconvolution of matrices?
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!
okay Thank you..

Connectez-vous pour commenter.

Plus de réponses (1)

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

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Produits

Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by