[][src]Struct opencv::rgbd::Linemod_Feature

#[repr(C)]pub struct Linemod_Feature {
    pub x: i32,
    pub y: i32,
    pub label: i32,
}

\brief Discriminant feature described by its location and label.

Fields

x: i32

x offset

y: i32

y offset

label: i32

Quantization

Implementations

impl Linemod_Feature[src]

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

pub fn new(x: i32, y: i32, label: i32) -> Result<Linemod_Feature>[src]

pub fn read(self, fn_: &FileNode) -> Result<()>[src]

pub fn write(self, fs: &mut FileStorage) -> Result<()>[src]

Trait Implementations

impl Clone for Linemod_Feature[src]

impl Copy for Linemod_Feature[src]

impl Debug for Linemod_Feature[src]

impl PartialEq<Linemod_Feature> for Linemod_Feature[src]

impl StructuralPartialEq for Linemod_Feature[src]

impl VectorElement for Linemod_Feature where
    Vector<Linemod_Feature>: VectorExtern<Linemod_Feature>, 
[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.