pub trait GeneralizedHoughGuilTraitConst: GeneralizedHoughTraitConst {
Show 13 methods
// Required method
fn as_raw_GeneralizedHoughGuil(&self) -> *const c_void;
// Provided methods
fn get_xi(&self) -> Result<f64> { ... }
fn get_levels(&self) -> Result<i32> { ... }
fn get_angle_epsilon(&self) -> Result<f64> { ... }
fn get_min_angle(&self) -> Result<f64> { ... }
fn get_max_angle(&self) -> Result<f64> { ... }
fn get_angle_step(&self) -> Result<f64> { ... }
fn get_angle_thresh(&self) -> Result<i32> { ... }
fn get_min_scale(&self) -> Result<f64> { ... }
fn get_max_scale(&self) -> Result<f64> { ... }
fn get_scale_step(&self) -> Result<f64> { ... }
fn get_scale_thresh(&self) -> Result<i32> { ... }
fn get_pos_thresh(&self) -> Result<i32> { ... }
}
Expand description
Constant methods for crate::imgproc::GeneralizedHoughGuil
Required Methods§
fn as_raw_GeneralizedHoughGuil(&self) -> *const c_void
Provided Methods§
fn get_xi(&self) -> Result<f64>
fn get_levels(&self) -> Result<i32>
fn get_angle_epsilon(&self) -> Result<f64>
fn get_min_angle(&self) -> Result<f64>
fn get_max_angle(&self) -> Result<f64>
fn get_angle_step(&self) -> Result<f64>
fn get_angle_thresh(&self) -> Result<i32>
fn get_min_scale(&self) -> Result<f64>
fn get_max_scale(&self) -> Result<f64>
fn get_scale_step(&self) -> Result<f64>
fn get_scale_thresh(&self) -> Result<i32>
fn get_pos_thresh(&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.