[][src]Struct opencv::rgbd::Linemod_DepthNormal

pub struct Linemod_DepthNormal { /* fields omitted */ }

\brief Modality that computes quantized surface normals from a dense depth map.

Implementations

impl Linemod_DepthNormal[src]

impl Linemod_DepthNormal[src]

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

\brief Default constructor. Uses reasonable default parameter values.

pub fn new(
    distance_threshold: i32,
    difference_threshold: i32,
    num_features: size_t,
    extract_threshold: i32
) -> Result<Linemod_DepthNormal>
[src]

\brief Constructor.

\param distance_threshold Ignore pixels beyond this distance. \param difference_threshold When computing normals, ignore contributions of pixels whose depth difference with the central pixel is above this threshold. \param num_features How many features a template must contain. \param extract_threshold Consider as candidate feature only if there are no differing orientations within a distance of extract_threshold.

pub fn create(
    distance_threshold: i32,
    difference_threshold: i32,
    num_features: size_t,
    extract_threshold: i32
) -> Result<Ptr<Linemod_DepthNormal>>
[src]

Trait Implementations

impl Boxed for Linemod_DepthNormal[src]

impl Drop for Linemod_DepthNormal[src]

impl Linemod_DepthNormalTrait for Linemod_DepthNormal[src]

impl Linemod_Modality for Linemod_DepthNormal[src]

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