[][src]Trait cv::TriangulatorRelative

pub trait TriangulatorRelative {
    fn triangulate_relative<A, B>(
        &self,
        relative_pose: RelativeCameraPose,
        a: A,
        b: B
    ) -> Option<CameraPoint>
    where
        A: Bearing,
        B: Bearing
; }

This trait allows you to take one relative pose from camera A to camera B and two bearings a and b from their respective cameras to triangulate a point from the perspective of camera A.

Required methods

fn triangulate_relative<A, B>(
    &self,
    relative_pose: RelativeCameraPose,
    a: A,
    b: B
) -> Option<CameraPoint> where
    A: Bearing,
    B: Bearing

Loading content...

Implementors

impl TriangulatorRelative for RelativeDltTriangulator[src]

impl<T> TriangulatorRelative for T where
    T: TriangulatorObservances
[src]

Loading content...