qsm_core/kernels/mod.rs
1//! Kernel functions for QSM processing
2//!
3//! This module provides various kernel implementations used in QSM algorithms:
4//! - Dipole kernel for susceptibility-to-field relationship
5//! - SMV kernel for spherical mean value filtering
6//! - Laplacian kernel for second derivative operations
7
8pub mod dipole;
9pub mod smv;
10pub mod laplacian;
11
12pub use dipole::*;
13pub use smv::*;
14pub use laplacian::*;