opencv::prelude

Trait GeneralizedHoughBallardTrait

Source
pub trait GeneralizedHoughBallardTrait: GeneralizedHoughBallardTraitConst + GeneralizedHoughTrait {
    // Required method
    fn as_raw_mut_GeneralizedHoughBallard(&mut self) -> *mut c_void;

    // Provided methods
    fn set_levels(&mut self, levels: i32) -> Result<()> { ... }
    fn set_votes_threshold(&mut self, votes_threshold: i32) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn set_levels(&mut self, levels: i32) -> Result<()>

R-Table levels.

Source

fn set_votes_threshold(&mut self, votes_threshold: i32) -> Result<()>

The accumulator threshold for the template centers at the detection stage. The smaller it is, the more false positions may be detected.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§