pub trait GeneralizedHoughBallard: GeneralizedHough + GeneralizedHoughBallardConst {
    fn as_raw_mut_GeneralizedHoughBallard(&mut self) -> *mut c_void;

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

Required Methods§

Provided Methods§

R-Table levels.

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

Implementors§