qsm_core/bet/mod.rs
1//! BET (Brain Extraction Tool) Implementation
2//!
3//! Reference:
4//! Smith, S.M. (2002). "Fast robust automated brain extraction."
5//! Human Brain Mapping, 17(3):143-155. https://doi.org/10.1002/hbm.10062
6//!
7//! Reference implementation: https://github.com/Bostrix/FSL-BET2
8
9mod icosphere;
10mod mesh;
11mod evolution;
12
13pub use evolution::{run_bet, run_bet_with_progress, BetParams};