slam-cv 0.1.3

Simple CV traits for VO (SLAM).
Documentation
1
2
3
4
5
pub trait Solver {
    type Output: 'static;

    fn solve(self) -> Self::Output;
}