[][src]Trait opencv::prelude::GeneralizedHoughBallard

pub trait GeneralizedHoughBallard: GeneralizedHough {
    pub fn as_raw_GeneralizedHoughBallard(&self) -> *const c_void;
pub fn as_raw_mut_GeneralizedHoughBallard(&mut self) -> *mut c_void; pub fn set_levels(&mut self, levels: i32) -> Result<()> { ... }
pub fn get_levels(&self) -> Result<i32> { ... }
pub fn set_votes_threshold(&mut self, votes_threshold: i32) -> Result<()> { ... }
pub fn get_votes_threshold(&self) -> Result<i32> { ... } }

finds arbitrary template in the grayscale image using Generalized Hough Transform

Detects position only without translation and rotation Ballard1981 .

Required methods

Loading content...

Provided methods

pub fn set_levels(&mut self, levels: i32) -> Result<()>[src]

R-Table levels.

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

pub fn set_votes_threshold(&mut self, votes_threshold: i32) -> Result<()>[src]

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

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

Loading content...

Implementors

Loading content...