Skip to main content

High-performance Python wrapper for waifu2x-ncnn-vulkan with GPU/CPU support

Project description

Waifu2x Python

Python Version License: MIT PyPI version

Python wrapper for waifu2x-ncnn-vulkan with a simple and powerful interface for image and video frame upscaling.

Features

  • High-performance image upscaling using waifu2x-ncnn-vulkan
  • Support for multiple image formats (PNG, JPG, WEBP, etc.)
  • Multiple models including anime and photo styles
  • GPU acceleration with fallback to CPU
  • Batch processing of multiple images
  • Progress tracking and error handling

Installation

pip install waifu2x-python

Dependencies

  • waifu2x-ncnn-vulkan
  • Python 3.8+
  • OpenCV
  • NumPy
  • Pillow

Usage

Basic Example

from waifu2x_python import Waifu2x, ProcessingConfig

# Initialize with default settings
waifu2x = Waifu2x()

# Process a single image
result = waifu2x.process("input.jpg", "output_2x.jpg")
print(f"Processed image saved to: {result.output_path}")

Advanced Configuration

from waifu2x_python import Waifu2x, ProcessingConfig, ModelType

# Custom configuration
config = ProcessingConfig(
    model=ModelType.UPCONV_7_ANIME,  # or ModelType.CUNET, ModelType.UP_PHOTO, etc.
    scale=2,                         # 1, 2, 4, 8, 16, 32
    noise=1,                         # -1 to 3 (-1 = no effect, 0 = no noise reduction, 1-3 = noise reduction level)
    gpu_id=0,                        # -1 for CPU-only, 0 for first GPU, 1 for second GPU, etc.
    tile_size=0,                     # 0 for auto
    num_threads=4                   # Number of CPU threads to use
)

waifu2x = Waifu2x(config=config)

# Process all images in a folder
results = waifu2x.process_folder("input_folder", "output_folder")
print(f"Processed {len([r for r in results if r.success])}/{len(results)} images successfully")

Command Line Interface

# Basic usage
waifu2x -i input.jpg -o output.png

# Process folder recursively
waifu2x -i input_folder -o output_folder -r

# Custom settings
waifu2x -i input.jpg -o output.png -m models-upconv_7_anime_style_art_rgb -s 2 -n 1 -g 0 -t 200

# CPU-only mode
waifu2x -i input.jpg -o output.png -g -1

Available Models

  • models-cunet - High quality denoising and upscaling (default)
  • models-upconv_7_anime_style_art_rgb - For anime-style art
  • models-upconv_7_photo - For photos
  • models-upconv_7_anime_style_art_rgb_noise0 - For clean anime-style art
  • models-upconv_7_anime_style_art_rgb_noise1 - For slightly noisy anime-style art
  • models-upconv_7_anime_style_art_rgb_noise2 - For noisy anime-style art
  • models-upconv_7_anime_style_art_rgb_noise3 - For very noisy anime-style art

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

  • waifu2x-ncnn-vulkan - The underlying engine
  • ncnn - High-performance neural network inference framework
  • Vulkan - Cross-platform 3D graphics and compute API

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

waifu2x_python-2.0.3.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

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

waifu2x_python-2.0.3-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

Details for the file waifu2x_python-2.0.3.tar.gz.

File metadata

  • Download URL: waifu2x_python-2.0.3.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for waifu2x_python-2.0.3.tar.gz
Algorithm Hash digest
SHA256 abce4052daf67a710769d62324827e22a866b2cc8415426ad0e09a881f08a620
MD5 7a0599583243454635f1fc7ddcace8ff
BLAKE2b-256 c2fa182e9fcfc0f918f06a0d5ebaa2967dd856827cdf8204aa9efef2b8e07c4b

See more details on using hashes here.

File details

Details for the file waifu2x_python-2.0.3-py3-none-any.whl.

File metadata

  • Download URL: waifu2x_python-2.0.3-py3-none-any.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for waifu2x_python-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 7ccc11218430796011cfa5f9ca516f8a123c137416a169bacbccd0059a28220f
MD5 c8163a958ff2cbfb2f5fd3113289d75b
BLAKE2b-256 21f55401e66a8b301ab5987897a3c195787473dec44f62a1100ce0b672461124

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