magic-kernel 0.1.0

Implementation of Magic Kernel family of resizing algorithms.
Documentation
  • Coverage
  • 85.71%
    6 out of 7 items documented1 out of 1 items with examples
  • Size
  • Source code size: 45.11 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 711.1 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • SevInf/magic-kernel-rust
    21 2 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SevInf

Magic Kernel for Rust

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.