a package of image restoration by leo
Project description
# A package of image restoration by leo
There are three methods in our package, which are
# import the package
import image_restoration_tools.restoration_tool as irt
## 1. input the images dir and the dir path where enhanced images save
irt.restore_dir(imgdir, savedir, path_length=3, isJPEG=False, isBLUR=False)
## 2. input the image path and the path where the enhanced image save
irt.restore_path(imgpath, savepath, path_length=3, isJPEG=False, isBLUR=False)
## 3. input the image and the path where the enhanced image save
import image_restoration_tools.utils
img = utils.imread_uint(imgpath, 3)
irt.restore_image(img, savepath, path_length=3, isJPEG=False, isBLUR=False)
You can set enhancement path by set $path_length$, the smaller the value, the shorter the recovery time will be.
if the degrading process is known as JPEG/Gaussian BLUR, set $isJPEG/isBLUR$ true separately
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for image_restoration_tools-2.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9c5c782a14f1fe0c96b248609cfeeea246eb6c5df0381147b90e37f1373c9af |
|
MD5 | 91a17cd853e460300bc409f4e2877b81 |
|
BLAKE2b-256 | 8838d0f0caefafe2a9b63446ac52c185de0451c4d6280cd6152aae6dcbacccc4 |