[][src]Struct cv_geom::RelativeDltTriangulator

pub struct RelativeDltTriangulator { /* fields omitted */ }

Based on algorithm 12 from "Multiple View Geometry in Computer Vision, Second Edition"

Implementations

impl RelativeDltTriangulator[src]

pub fn new() -> Self[src]

Creates a RelativeDltTriangulator with default values.

Same as calling Default::default.

pub fn epsilon(self, epsilon: f64) -> Self[src]

Set the epsilon used in the SVD solver.

Default is 1e-9.

pub fn max_iterations(self, max_iterations: usize) -> Self[src]

Set the maximum number of iterations for the SVD solver.

Default is 100.

Trait Implementations

impl Clone for RelativeDltTriangulator[src]

impl Copy for RelativeDltTriangulator[src]

impl Debug for RelativeDltTriangulator[src]

impl Default for RelativeDltTriangulator[src]

impl TriangulatorRelative for RelativeDltTriangulator[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,