Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.07 KB

README.md

File metadata and controls

39 lines (26 loc) · 1.07 KB

Zero Scratches

Old Photo Restoration

This is a lightweight implementation of Microsoft Bringing Old Photos Back to Life

Install

pip install zeroscatches

Basic usage

import PIL.Image
from zeroscratches import EraseScratches


image_path = "/path/to/image-scratched.jpg"
eraser = EraseScratches()

image = PIL.Image.open(image_path)
new_img = eraser.erase(image)

new_img = PIL.Image.fromarray(new_img)
new_img.show()

Get the pretrained models at Hugging Face Zero Scratches

Some Apps using the library:

Face Shine Is a backend server for photo enhancement and restoration.

Super Face is a Python QT frontend for Face Shine server.