Skip to main content

Image Inpaint Library

Project description

Introduction

MagicInpaint is image processing Python library for high quality image reconstruction and inpaint. It is available for the GPU and CPU. There is also and image processing tool using the library available here - https://github.com/antonmilev/MagicInpainter.

To install MagicInpaint for GPU:

pip install magicinpaint-gpu

To test if MagicInpaint is installed:

import magicinpaint as mi
mi.version()

Normally, this should print the version and the application type:

MagicInpaint 1.01 (gpu)

To install MagicInpaint for CPU:

pip install magicinpaint-cpu

:warning:Please Note:
For the GPU version to work you need to have NVIDIA GPU card and correctly installed CUDA driver (GTX or RTX)!

Inpaint with MagicInpaint

To use MagicInpaint for image files with cv2:

import numpy as np
import magicinpaint as mi
import os,sys
import cv2

# check magicinpaint version
print(mi.version())

img_path = '08_beach1.jpg'
mask_path = '08_beach1_mask.png'
out_path = '08_beach1_inpaint.png'

img = cv2.imread(img_path)
if img is None:
    print('Can not open image:', img_path)
    exit() 

mask = cv2.imread(mask_path, cv2.IMREAD_GRAYSCALE)
if mask is None:
    print('Can not open mask:', mask_path)
    exit() 

mi.inpaint(img, mask, 15, mi.InpaintGPUfast, verbose = True) 

cv2.imshow('dst', img)
cv2.imwrite(out_path, img)
cv2.waitKey(0)
cv2.destroyAllWindows()

Output:

Noise Pixels:       20221
Image Pixels:       495650
Radius:             15
Inpaint Method:     GPU Fast
TFLOPS:             28.8950
Starting Inpaint.....
Press ESC to cancel
----10%----20%----30%----40%----50%----60%----70%----80%----90%----100%
Inpainting Completed
Inpaint time:       21375.00 ms
Saving output image....

Use without OpenCV:

There is also a method that allows to process image files directly (supported image extensions are JPG,BMP,PNG):

import magicinpaint as mi

# check magicinpaint version
print(mi.version())

img_path = 'test/cloth1_red1.png'
mask_path = 'test/cloth1_mask.png'
out_path = 'results_mi/cloth1_inpaint_mi_GPUfast_r10.png'

mi.inpaint_file(img_path, mask_path, out_path, 30, mi.InpaintGPUfast, verbose = True) 

Desription of the function arguments:

  • image_file - path to color image file, supported formats JPG,BMP,PNG
  • mask_file - path to mask black-white image file, 0-valid pixels, 255- noise pixels to remove
  • out_path - path to output image file, if None result is saved in image file with appended string "onpaint"
  • rad - inpaint radius, limited to 64
  • method - inpaint method, see below
  • verbose - print details, by default is False

Function outputs True if sucessful, otherwise False. The smae

Inpaint with OpenCV

To use OpenCV inpaint see https://docs.opencv.org/3.4/df/d3d/tutorial_py_inpainting.html:

Inpaint with cv2.INPAINT_NS:

import numpy as np
import cv2 

img_path = 'test/08_beach1.png'
mask_path = 'test/08_beach1_mask.png'
out_path = 'results_cv2/08_beach1_inpaint_cv2_NS_r30.png'

img = cv2.imread(img_path)

if img is None:
    print('can not open image:', img_path)
    exit() 

mask = cv2.imread(mask_path, cv2.IMREAD_GRAYSCALE)
dst = cv2.inpaint(img,mask,30,cv2.INPAINT_NS)
cv2.imshow('dst', dst)
cv2.imwrite(out_path, dst)
cv2.waitKey(0)
cv2.destroyAllWindows()

Inpaint with cv2.INPAINT_TELEA:

import numpy as np
import cv2

img_path = 'test/cloth1_red1.png'
mask_path = 'test/cloth1_mask.bmp'
out_path = 'results_cv2/cloth1_inpaint_cv2_Telea_r30.png'

img = cv2.imread(img_path)

if img is None:
    print('can not open image:', img_path)
    exit() 

mask = cv2.imread(mask_path, cv2.IMREAD_GRAYSCALE)
dst = cv2.inpaint(img,mask,30,cv2.INPAINT_TELEA)
cv2.imshow('dst', dst)
cv2.imwrite(out_path, dst)
cv2.waitKey(0)
cv2.destroyAllWindows()

OpenCV inpaint methods are faster but works well only for small scratches and line defects.

Inpaint methods

Following MagicInpaint methods are available:

  • InpaintCPU - this is the default inpaint method if GPU with CUDA is missing. Results can be worse and this method would be too slow so is not recommended for images with high resolution and large noise area.

  • InpaintGPU - this is the most precise GPU method, however for high resolution is also too slow

  • InpaintGPUfast - this is the recomended GPU method for real-life photos, results can be very little worse but perfomance can rise more than 500 percents

Limitations

  • Curently the library is avaliable and tested only for Windows and Python versions Python 3.6 - Python 3.12
  • Inpaint radius is limited to 64
  • For very large image resolutions above 4K and large noise area inpaint can be too slow

For more details see: https://github.com/antonmilev/MagicInpainter.

Future Work

In comming releases there would be several improvements:

  • GPU performance - several optimizations are possible for the GPU to work even faster, also search algorithms can be greately improved

  • Images with larger resolution Optimization algorithms used in MagicInpainter 3.0 become sometimes too slow and unstable for images with high resolution (in these cases Zoom In/Out buttons can be used). One other limitation is that inpaint radius can not exceed 64 pixels.

  • Processing several images and video MagicInpainter 3.0 is currently limited to single photos.

  • Use AI and deep learning to speed up algorithms and optimal inpaint radius selection Assist inpaint algorithms with AI for classification, automation of algorithms type and optimal radius size selection. Used here inpaint algorithms can be combined with various neural networks models, especially in the cases when inpaint involves complicated features and big resolution, speed can be also significantly improved.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

magicinpaint_cpu-1.0.2-cp313-cp313-win_amd64.whl (534.6 kB view details)

Uploaded CPython 3.13Windows x86-64

magicinpaint_cpu-1.0.2-cp312-cp312-win_amd64.whl (517.4 kB view details)

Uploaded CPython 3.12Windows x86-64

magicinpaint_cpu-1.0.2-cp311-cp311-win_amd64.whl (517.3 kB view details)

Uploaded CPython 3.11Windows x86-64

magicinpaint_cpu-1.0.2-cp310-cp310-win_amd64.whl (517.2 kB view details)

Uploaded CPython 3.10Windows x86-64

magicinpaint_cpu-1.0.2-cp39-cp39-win_amd64.whl (517.4 kB view details)

Uploaded CPython 3.9Windows x86-64

magicinpaint_cpu-1.0.2-cp38-cp38-win_amd64.whl (517.2 kB view details)

Uploaded CPython 3.8Windows x86-64

magicinpaint_cpu-1.0.2-cp37-cp37m-win_amd64.whl (518.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

magicinpaint_cpu-1.0.2-cp36-cp36m-win_amd64.whl (518.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

File details

Details for the file magicinpaint_cpu-1.0.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f3240f4cccbdc0f745fa9af320fb59adb6dc7245890bd318b07cc5c656a5cb4
MD5 fbee24248cd3d18a263652ae5b6f0475
BLAKE2b-256 52ab5dcb90ef17c599e2adaa46ce4c23bec1d27cb390f17cdf0bfaca83d91782

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1be9b7c5e37401c66492ea561ea36596e9c626d1f672110391f14dfb6db3e13
MD5 7b54a7b1ba07db3e8027fab83804774e
BLAKE2b-256 e29392ce1a4087ff48ae64ca97e60b3b176f9bcb5d62950f972a6a09fa64aca2

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5c327b4e1ff4dcda290d66679b2ae57652a7b8fdce5529c3c54f8b9663863f6
MD5 ae99f8d27a0263648b251c827925de9f
BLAKE2b-256 92add3919b2689fd37f058c48d55cda8970d7df5bfb09b1740063373dc5ae404

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cad981b5f9dbec3d601d557b0e327222125533ac933316b8ba3f51a3d017dd5
MD5 49ce4208cab396aaa942cd02a331e094
BLAKE2b-256 269ab2699967876f3daa9ac4fc6d191f6390f2625a96834624d293bf0b6a2c11

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17bbfb515b23123e2d5222874bfa2fe3bdf9af1dd911b02c8fa2d8bc24a630cc
MD5 5a373bbc27247774fac3db040aafeea1
BLAKE2b-256 6c0321328e07a8f3f3ccac95416381cfca1d1e72427bd69de43d833a4898c2f1

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 adc443689d766ed910d1de58592a6664b779ef0d32092b091306cc9ad8573e8c
MD5 f5ee7b64d5f3c794a479058361d54fc0
BLAKE2b-256 4a79c3793f498359d4852699a6b693be0d11bf3e76aab2ab284d8197adcbb62b

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8048d480edb06b31ec166900741ef2806dca765fda6e501d26e3213e78c2ea5c
MD5 305e60c8dd5081aa79d76d8bb934b7a4
BLAKE2b-256 42c2242ee2046baa39c75da233d86100df0af7c045e736907a176bd5259deb55

See more details on using hashes here.

File details

Details for the file magicinpaint_cpu-1.0.2-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for magicinpaint_cpu-1.0.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a6b6b0e2d6baa0bc383341fa4b092b1a399aba8bdde20fb84c98194c07be4f47
MD5 b9b54379d3cf03be1d8b6fc946061edf
BLAKE2b-256 068cdff171940698b49a79a1720f00aa3888853c7fc7ad468e655abb7ab2a5b8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page