imcombiners 0.1.1

Rust-backed image stack combine + rejection kernels (IRAF imcombine parity)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Python extension entrypoint for `imcombiners`.

use pyo3::prelude::*;

mod kernel;
mod pyapi;

#[pymodule]
fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> {
    pyapi::register(m)
}