[][src]Struct cv_geom::MinSquaredTriangulator

pub struct MinSquaredTriangulator { /* fields omitted */ }

This solves triangulation problems by simply minimizing the squared reprojection error of all observances.

This is a quick triangulator to execute and is fairly robust.

Implementations

impl MinSquaredTriangulator[src]

pub fn new() -> Self[src]

Creates a MinSquaredTriangulator with default values.

Same as calling Default::default.

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

Set the epsilon used in the symmetric eigen solver.

Default is 1e-9.

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

Set the maximum number of iterations for the symmetric eigen solver.

Default is 100.

Trait Implementations

impl Clone for MinSquaredTriangulator[src]

impl Copy for MinSquaredTriangulator[src]

impl Debug for MinSquaredTriangulator[src]

impl Default for MinSquaredTriangulator[src]

impl TriangulatorObservances for MinSquaredTriangulator[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>,