visual_odometry_rs/
lib.rs

1// This Source Code Form is subject to the terms of the Mozilla Public
2// License, v. 2.0. If a copy of the MPL was not distributed with this
3// file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
5//! # Visual Odometry in Rust (vors)
6//!
7//! `visual-odometry-rs` is a library providing implementation
8//! of visual odometry algorithms fully in Rust.
9
10#![warn(missing_docs)]
11
12pub mod core;
13pub mod dataset;
14pub mod math;
15pub mod misc;