Python implementation of Krishnan et al. "Fast image deconvolution using hyper-Laplacian priors." (2009)
- numpy
- scipy
- opencv-python
See example.py
from fastdeconv import FastDeconvolution
fd = FastDeconvolution(blurred_image, kernel, lambda_, alpha)
deblurred = fd.solve()