1
2
3
4
5
6
7
8
9
use crate::{NormalizedKeyPoint, WorldPoint};

/// Normalized keypoint match
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct KeyPointsMatch(pub NormalizedKeyPoint, pub NormalizedKeyPoint);

/// Normalized keypoint to world point match
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct KeyPointWorldMatch(pub NormalizedKeyPoint, pub WorldPoint);