optical_flow_lk/
lib.rs

1//! High-performance computer vision algorithms for real-time applications
2//!
3//! Provides implementations of:
4//! - Lucas-Kanade optical flow
5//! - Shi-Tomasi feature detection
6//! - Optimized image processing pipelines
7//!
8//! Designed to be compatible with WebAssembly (Wasm).
9
10mod features;
11mod lk;
12mod pyramid;
13mod utils;
14
15// Re-export main functionality
16pub use features::good_features_to_track;
17pub use lk::calc_optical_flow;
18pub use pyramid::build_pyramid;