How can I deblur an image given the original PSF?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I would like to deblur an image to get back my original image. I didn't see any deconv2 function in Matlab and was wondering what would be the best way to go about finding the 'inverse PSF'?
0 comentarios
Respuesta aceptada
Ryan
el 3 de Jul. de 2012
Editada: Ryan
el 3 de Jul. de 2012
doc deconvlucy the documentation mentions similar functions.
J = deconvlucy(I, PSF)
2 comentarios
Ryan
el 3 de Jul. de 2012
deconvlucy and deconvwnr do not support any returns other than the original image. deconreg allows the return of the lagrange multiplier in addition to the restored image. These functions use the Lucy-Richardson, Weiner and regularized methods respectively to perform the deconvolution.
[J,PSF] = deconvblind(I, INITPSF)
This returns the deblurred Image, J and the restored PSF used. I am not sure if this is what you are looking for though and you will need to test the results to be sure.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!