imcombiners 0.1.1

Rust-backed image stack combine + rejection kernels (IRAF imcombine parity)
Documentation
1
2
3
4
5
6
7
8
9
//! Pure-Rust kernel layer. No PyO3 here — only `ndarray`/`rayon`.
//!
//! This split makes the kernels callable from `cargo test` and from any future
//! Rust consumer, and isolates the FFI surface in `crate::pyapi`.

pub mod combine;
pub mod mask;
pub mod reject;
pub mod utils;