[][src]Struct opencv::types::DetectorParametersRef

pub struct DetectorParametersRef<'o> { /* fields omitted */ }

Methods from Deref<Target = DetectorParameters>

pub fn adaptive_thresh_win_size_min(&self) -> Result<i32>[src]

pub fn adaptive_thresh_win_size_max(&self) -> Result<i32>[src]

pub fn adaptive_thresh_win_size_step(&self) -> Result<i32>[src]

pub fn adaptive_thresh_constant(&self) -> Result<f64>[src]

pub fn min_marker_perimeter_rate(&self) -> Result<f64>[src]

pub fn max_marker_perimeter_rate(&self) -> Result<f64>[src]

pub fn polygonal_approx_accuracy_rate(&self) -> Result<f64>[src]

pub fn min_corner_distance_rate(&self) -> Result<f64>[src]

pub fn min_distance_to_border(&self) -> Result<i32>[src]

pub fn min_marker_distance_rate(&self) -> Result<f64>[src]

pub fn corner_refinement_method(&self) -> Result<i32>[src]

pub fn corner_refinement_win_size(&self) -> Result<i32>[src]

pub fn corner_refinement_max_iterations(&self) -> Result<i32>[src]

pub fn corner_refinement_min_accuracy(&self) -> Result<f64>[src]

pub fn marker_border_bits(&self) -> Result<i32>[src]

pub fn perspective_remove_pixel_per_cell(&self) -> Result<i32>[src]

pub fn perspective_remove_ignored_margin_per_cell(&self) -> Result<f64>[src]

pub fn max_erroneous_bits_in_border_rate(&self) -> Result<f64>[src]

pub fn min_otsu_std_dev(&self) -> Result<f64>[src]

pub fn error_correction_rate(&self) -> Result<f64>[src]

pub fn april_tag_quad_decimate(&self) -> Result<f32>[src]

pub fn april_tag_quad_sigma(&self) -> Result<f32>[src]

pub fn april_tag_min_cluster_pixels(&self) -> Result<i32>[src]

pub fn april_tag_max_nmaxima(&self) -> Result<i32>[src]

pub fn april_tag_critical_rad(&self) -> Result<f32>[src]

pub fn april_tag_max_line_fit_mse(&self) -> Result<f32>[src]

pub fn april_tag_min_white_black_diff(&self) -> Result<i32>[src]

pub fn april_tag_deglitch(&self) -> Result<i32>[src]

pub fn detect_inverted_marker(&self) -> Result<bool>[src]

Trait Implementations

impl<'_> Deref for DetectorParametersRef<'_>[src]

type Target = DetectorParameters

The resulting type after dereferencing.

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.