├── .gitignore ├── LICENSE ├── README.md ├── example ├── deblur.py └── lena.png ├── fastdeconv ├── __init__.py └── deconv.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/README.md -------------------------------------------------------------------------------- /example/deblur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/example/deblur.py -------------------------------------------------------------------------------- /example/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/example/lena.png -------------------------------------------------------------------------------- /fastdeconv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/fastdeconv/__init__.py -------------------------------------------------------------------------------- /fastdeconv/deconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/fastdeconv/deconv.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelpers/fastdeconv/HEAD/setup.py --------------------------------------------------------------------------------