RealESRGAN-ONNX / README.md
bukuroo's picture
Update README.md
a1f365e verified
metadata
license: bsd-3-clause
tags:
  - onnx
  - super-resolution
  - ezonnx

Real-ESRGAN-ONNX

ONNX models for inference with EZONNX

  • Model type:
    Image super resolution

  • Official implementation repository:
    Real-ESRGAN

  • Usage

    from ezonnx import RealESRGAN, visualize_images
    model = RealESRGAN()  # automatically load from Hugging Face
    ret = model("image.jpg")
    visualize_images(["Super-Resolved Image"],[ret.processed_img[...,::-1])