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.
pip install pyinpaint
- Command line
pyinpaint --org_img "path/to/original/image" --mask "path/to/mask"
# pyinpaint --org_img --mask --ps --k_boundary --k_search --k_patch
The output is an inpainted image at the path of org_img
.
- Python
from pyinpaint import Inpaint
inpaint = Inpaint(org_img, mask)
inpainted_img = inpaint()
#inpaint = Inpaint(org_img, mask, ps)
#inpainted_img = inpaint(k_boundary, k_search, k_patch)
This returns a numpy array inpainted_img
.
- Use PiMask to create a mask on the damaged portion of the image.
- Then use PyInpaint to restore the image.
pyinpaint_tuto.mp4
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 graphp
Laplacian.A
is the area to be inpainted.dA
is 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 nodeu
tov
.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. |