๐Ÿ“ฆ darkskygit / waifu2x.rs

A waifu2x-ncnn-vulkan Rust binding.

โ˜… 23 stars โ‘‚ 3 forks ๐Ÿ‘ 23 watching โš–๏ธ GNU Affero General Public License v3.0
bindingsrustwaifu2x
๐Ÿ“ฅ Clone https://github.com/darkskygit/waifu2x.rs.git
HTTPS git clone https://github.com/darkskygit/waifu2x.rs.git
SSH git clone git@github.com:darkskygit/waifu2x.rs.git
CLI gh repo clone darkskygit/waifu2x.rs
DarkSky DarkSky chore: bump deps c6e6ca5 4 months ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ .cargo
๐Ÿ“ src
๐Ÿ“ tests
๐Ÿ“ waifu2x
๐Ÿ“„ .gitignore
๐Ÿ“„ build.rs
๐Ÿ“„ Cargo.toml
๐Ÿ“„ LICENSE
๐Ÿ“„ README.md
๐Ÿ“„ README.md

waifu2x.rs

A waifu2x-ncnn-vulkan Rust binding.

This library needs to be compiled with the rust nightly.

Usage

use image::open;
use quicli::prelude::*;
use waifu2x::Waifu2x;

fn main() -> CliResult {
  let processer = Waifu2x::new(0, 0, 2, 128, true)?;
  let image = open("image.png")?;
  processer.proc_image(image, false).save("output.png")?;
}