[][src]Struct opencv::rgbd::RgbdFrame

pub struct RgbdFrame { /* fields omitted */ }

Object that contains a frame data.

Implementations

impl RgbdFrame[src]

impl RgbdFrame[src]

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

pub fn new(
    image: &Mat,
    depth: &Mat,
    mask: &Mat,
    normals: &Mat,
    id: i32
) -> Result<RgbdFrame>
[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<RgbdFrame>>
[src]

C++ default parameters

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

Trait Implementations

impl Boxed for RgbdFrame[src]

impl Drop for RgbdFrame[src]

impl RgbdFrameTrait for RgbdFrame[src]

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