[][src]Enum opencv::calib3d::SolvePnPMethod

#[repr(C)]
pub enum SolvePnPMethod {
    SOLVEPNP_ITERATIVE,
    SOLVEPNP_EPNP,
    SOLVEPNP_P3P,
    SOLVEPNP_DLS,
    SOLVEPNP_UPNP,
    SOLVEPNP_AP3P,
    SOLVEPNP_IPPE,
    SOLVEPNP_IPPE_SQUARE,
    SOLVEPNP_MAX_COUNT,
}

Variants

SOLVEPNP_ITERATIVE
SOLVEPNP_EPNP

EPnP: Efficient Perspective-n-Point Camera Pose Estimation lepetit2009epnp

SOLVEPNP_P3P

Complete Solution Classification for the Perspective-Three-Point Problem gao2003complete

SOLVEPNP_DLS

A Direct Least-Squares (DLS) Method for PnP hesch2011direct

SOLVEPNP_UPNP

Exhaustive Linearization for Robust Camera Pose and Focal Length Estimation penate2013exhaustive

SOLVEPNP_AP3P

An Efficient Algebraic Solution to the Perspective-Three-Point Problem Ke17

SOLVEPNP_IPPE

Infinitesimal Plane-Based Pose Estimation Collins14

SOLVEPNP_IPPE_SQUARE

Infinitesimal Plane-Based Pose Estimation Collins14

SOLVEPNP_MAX_COUNT

Used for count

Trait Implementations

impl Clone for SolvePnPMethod[src]

impl Copy for SolvePnPMethod[src]

impl Debug for SolvePnPMethod[src]

impl PartialEq<SolvePnPMethod> for SolvePnPMethod[src]

impl StructuralPartialEq for SolvePnPMethod[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.