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
Mutable methods for crate::imgproc::GeneralizedHoughBallard
Required Methods§
fn as_raw_mut_GeneralizedHoughBallard(&mut self) -> *mut c_void
Provided Methods§
Sourcefn set_levels(&mut self, levels: i32) -> Result<()>
fn set_levels(&mut self, levels: i32) -> Result<()>
R-Table levels.
Sourcefn set_votes_threshold(&mut self, votes_threshold: i32) -> Result<()>
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.