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.2.tar.gz (22.3 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.2-py3-none-any.whl (21.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: waifu2x_python-2.0.2.tar.gz
  • Upload date:
  • Size: 22.3 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.2.tar.gz
Algorithm Hash digest
SHA256 969811b6d014a42476a87cf9ae604560b8bd723f374daa3bba38711f4b4738c4
MD5 e64f817924fc24d9ebd7ec99ef885d5f
BLAKE2b-256 57fdf1777bf2e6cf4df6cf462431b8f48e9b6c05f431ffa9ef0ba28f2ec9f276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: waifu2x_python-2.0.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e75f7f50990533a986b6d2f4c1d3bd84da91bfb82a6d02e4fada85b1244531b0
MD5 dd9eaa8321ee6833c1c82fcaecaf4217
BLAKE2b-256 52812414374d028933664dd5aacdaa1c4ed5796bb72475814117f34ad981709a

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