A lightwieght image inpainting tool written in python. Simple and effective tool to remove scratches, bruises and small holes in images. Could be easily integrated at the backend for Flask or Django apps related to image restoration.
Inpainting is a process of image restoration, the idea is to fill the damage, deteriorated or missing part of an image to present a complete image. It can also be used to remove unwanted parts in an image. Deep learning based approaches use GANs to inpaint. This requires significant amount of training. The proposed tool quickly inpaints by solving a PDE on graphs.
-
Build the package
python setup.py sdist bdist_wheel
-
Install the built package
pip install dist/PyInpaint-1.2.0-py3-none-any.whl
- Command line
pyinpaint --org_img "path/to/original/image" --mask "path/to/mask"
# pyinpaint --org_img --mask --ps --k_boundary --k_search --k_patch- Python
from pyinpaint.inpaint import Inpainting
inpainted_img = Inpainting(image_array, mask_array, ps, k_boundary, k_search, k_patch)This returns a numpy array inpainted_img.
Basically the inpainting is achieved using harmonic extension on a non-local graph created using image to be inpainted.

f(u)is the signal (rgb values) on the nodeu.\Delta_{w,p}is the weighted graphpLaplacian.Ais the area to be inpainted.dAis the area where signal is given asg(u).
For p=2 the solution to the above equation yields non-local means.

w(u,v)is the weight on the edge from nodeutov.N(u)is the set of neighbors of nodeu.d(u)is the degree at nodeu.
The following description of the parameters is useful to gain speed-ups and to inpaint low spatial frequency texture images.
| Param | Description |
|---|---|
| ps | Patch size, it is used for creating the non-local graph. The default value is 7. To gain speed-up try with 3 or 5. Ideally it should be an odd value. For images with low spatial frequency texture, should be kept high like 11, 13 or 15 ... |
| k_boundary | To determine the nodes at the intersection of A and dA. The default is 4. To gain speed-up try changing to 8 or 16. |
| k_search | Determines the region for searching the non-local neighbors of a node. The default is 1000. For large size images it should be increased. To gain speed-up try with 300, 400, 500. |
| k_patch | The KNN value for the non-local graph construction. The default is 5. Try 3 for speed-up. Try larger value to increase the resolution. |


