An open API service indexing awesome lists of open source software.

https://github.com/leonelhs/zeroscratches

Old Photo Restoration
https://github.com/leonelhs/zeroscratches

Last synced: 5 months ago
JSON representation

Old Photo Restoration

Awesome Lists containing this project

README

          

# Zero Scratches
## Old Photo Restoration

This is a lightweight implementation of [Microsoft Bringing Old Photos Back to Life](https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life)

### Install
```shell
pip install zeroscratches
```
### Basic usage
```python

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](https://huggingface.co/leonelhs/zeroscratches)

## Some Apps using the library:

### [Face Shine](https://github.com/leonelhs/face-shine)
Face Shine Is a backend server for photo enhancement and restoration.

### [Super Face](https://github.com/leonelhs/SuperFace/)
Super Face is a Python QT frontend for Face Shine server.