[][src]Struct opencv::rgbd::OdometryFrame

pub struct OdometryFrame { /* fields omitted */ }

Object that contains a frame data that is possibly needed for the Odometry. It's used for the efficiency (to pass precomputed/cached data of the frame that participates in the Odometry processing several times).

Implementations

impl OdometryFrame[src]

impl OdometryFrame[src]

pub fn default() -> Result<OdometryFrame>[src]

pub fn new(
    image: &Mat,
    depth: &Mat,
    mask: &Mat,
    normals: &Mat,
    id: i32
) -> Result<OdometryFrame>
[src]

C++ default parameters

  • mask: Mat()
  • normals: Mat()
  • id: -1

pub fn create(
    image: &Mat,
    depth: &Mat,
    mask: &Mat,
    normals: &Mat,
    id: i32
) -> Result<Ptr<OdometryFrame>>
[src]

C++ default parameters

  • image: Mat()
  • depth: Mat()
  • mask: Mat()
  • normals: Mat()
  • id: -1

Trait Implementations

impl Boxed for OdometryFrame[src]

impl Drop for OdometryFrame[src]

impl OdometryFrameTrait for OdometryFrame[src]

impl RgbdFrameTrait for OdometryFrame[src]

impl Send for OdometryFrame[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, 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.