pub trait GeneralizedHoughBallardTraitConst: GeneralizedHoughTraitConst {
// Required method
fn as_raw_GeneralizedHoughBallard(&self) -> *const c_void;
// Provided methods
fn get_levels(&self) -> Result<i32> { ... }
fn get_votes_threshold(&self) -> Result<i32> { ... }
}
Expand description
Constant methods for crate::imgproc::GeneralizedHoughBallard
Required Methods§
fn as_raw_GeneralizedHoughBallard(&self) -> *const c_void
Provided Methods§
fn get_levels(&self) -> Result<i32>
fn get_votes_threshold(&self) -> Result<i32>
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.