Image upscaler for anime.
Project description
CDC Image Upscaler
Wrapped tools based on xiezw5/Component-Divide-and-Conquer-for-Real-World-Image-Super-Resolution.
First you need to install this with pip
:
pip install cdc_upscaler
Here is a simple example:
import logging
import os
from PIL import Image
from cdc_upscaler import image_upscale
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
original_image = Image.open('images/your input image.png')
# any scale is supported, such as 1.5, 2, even 6 (which may take some more time)
upscaled_image = image_upscale(original_image, scale=4)
os.makedirs('output', exist_ok=True)
upscaled_image.save('output/result.png')
# | original | 4x |
---|---|---|
1 | ||
2 |
This pretrained model is hosted on 7eu7d7/CDC_anime, which is provided by 7eu7d7. The onnx model used is hosted on narugo/CDC_anime_onnx.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdc_upscaler-0.1.1.tar.gz
(9.9 kB
view hashes)
Built Distribution
Close
Hashes for cdc_upscaler-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20ea7028d9e8de35b2a6dc8146ee6d5e54b0eebaa5be609ce67320cc64819c6b |
|
MD5 | e11ba989f26193d5a3593de214e84d6c |
|
BLAKE2b-256 | 3a76da80b2b7bd6046f2d6124c40493d32fefefc66a4f8b091f1634260950b3c |