Skip to content

Rust implementation of Magic Kernel resizing algorithms

License

Notifications You must be signed in to change notification settings

SevInf/magic-kernel-rust

Repository files navigation

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.

About

Rust implementation of Magic Kernel resizing algorithms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published