//! Descriptor matching algorithms.
//!
//! # Modules
//!
//! | Module | Description |
//! |--------|-------------|
//! | [`brute_force`] | O(n·m) L2 and Hamming matching with cross-check filter |
//! | [`flann`] | KD-tree approximate nearest-neighbour matching |
//! | `ratio_test` | Lowe's ratio test, RANSAC fundamental matrix, essential matrix |
// Convenience re-exports
pub use ;
pub use FlannMatcher;
pub use ;