[][src]Struct apriltag_sys::apriltag_detector

#[repr(C)]pub struct apriltag_detector {
    pub nthreads: c_int,
    pub quad_decimate: f32,
    pub quad_sigma: f32,
    pub refine_edges: c_int,
    pub decode_sharpening: f64,
    pub debug: c_int,
    pub qtp: apriltag_quad_thresh_params,
    pub tp: *mut timeprofile_t,
    pub nedges: u32,
    pub nsegments: u32,
    pub nquads: u32,
    pub tag_families: *mut zarray_t,
    pub wp: *mut workerpool_t,
    pub mutex: pthread_mutex_t,
}

Fields

nthreads: c_intquad_decimate: f32quad_sigma: f32refine_edges: c_intdecode_sharpening: f64debug: c_intqtp: apriltag_quad_thresh_paramstp: *mut timeprofile_tnedges: u32nsegments: u32nquads: u32tag_families: *mut zarray_twp: *mut workerpool_tmutex: pthread_mutex_t

Trait Implementations

impl Clone for apriltag_detector[src]

impl Copy for apriltag_detector[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.