Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 795 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 795 Bytes

Magic Kernel for Rust

Crates.io Version docs.rs

Implementation of Magic Kernel family of resizing algorithms.

Usage:

use magic_kernel::{magic_resize, Version};
magic_resize(
    &image,
    Version::MagicKernelSharp2021, // algorithm version to use
    Some(1500), // width
    Some(500), // height
);

image is expected to be an instance magic_kernel::ImageF64. Example of creating ImageF64 from image crate can be found in examples directory.