deconvolution

Is there a function in Python similar to Matlab's deconvblind?

Is there a function in Python similar to Matlab's deconvblind? Question: I’m working on blind deconvoltuion. In iterating L2norm reguralization, I want to update the PSF at the same time, and when I looked it up, I found a function called deconvblind in Matlab: l[J,PSF] = deconvblind(I,INITPSF) deconvolves image I using the maximum likelihood algorithm, …

Total answers: 2

Understanding scipy deconvolve

Understanding scipy deconvolve Question: I’m trying to understand scipy.signal.deconvolve. From the mathematical point of view a convolution is just the multiplication in fourier space so I would expect that for two functions f and g: Deconvolve(Convolve(f,g) , g) == f In numpy/scipy this is either not the case or I’m missing an important point. Although …

Total answers: 2