slam-cv 0.1.3

Simple CV traits for VO (SLAM).
Documentation
1
2
3
4
5
6
7
8
9
10
11
use nalgebra::Point3;

use super::descriptor::Descriptor;
use super::keypoint::KeyPoint;

pub trait Landmark
where
    Self: KeyPoint + Descriptor,
{
    fn point_world(&self) -> Point3<Self::Number>;
}