//! Vida Meteor Detection Algorithm Implementation //! //! Based on the paper: "Open-source meteor detection software for low-cost single-board computers" //! by Vida et al., 2016 //! //! This module implements the CAMS FTP compression format and detection algorithms: //! - Frame accumulation (256 frames → maxpixel, avepixel, stdpixel, maxframe) //! - Star extraction for sky quality assessment //! - Fireball detection (real-time, K1=4 threshold) //! - Meteor detection (offline, morphological processing + Hough transform) //! - Astrometric and photometric calibration //! - CAMS FTPdetectinfo output format pub mod accumulated_frame; pub mod config; pub mod frame_accumulator; pub mod morphology; pub mod line_detector; pub mod fireball_detector; pub mod meteor_detector; pub mod star_extractor; pub mod ftpdetect; pub mod calibration; pub mod controller; pub use accumulated_frame::*; pub use config::*; pub use frame_accumulator::*; pub use morphology::*; pub use line_detector::*; pub use fireball_detector::*; pub use meteor_detector::*; pub use star_extractor::*; pub use ftpdetect::*; pub use calibration::*; pub use controller::*;