pub trait GeneralizedHoughGuilTrait: GeneralizedHoughGuilTraitConst + GeneralizedHoughTrait {
Show 13 methods
// Required method
fn as_raw_mut_GeneralizedHoughGuil(&mut self) -> *mut c_void;
// Provided methods
fn set_xi(&mut self, xi: f64) -> Result<()> { ... }
fn set_levels(&mut self, levels: i32) -> Result<()> { ... }
fn set_angle_epsilon(&mut self, angle_epsilon: f64) -> Result<()> { ... }
fn set_min_angle(&mut self, min_angle: f64) -> Result<()> { ... }
fn set_max_angle(&mut self, max_angle: f64) -> Result<()> { ... }
fn set_angle_step(&mut self, angle_step: f64) -> Result<()> { ... }
fn set_angle_thresh(&mut self, angle_thresh: i32) -> Result<()> { ... }
fn set_min_scale(&mut self, min_scale: f64) -> Result<()> { ... }
fn set_max_scale(&mut self, max_scale: f64) -> Result<()> { ... }
fn set_scale_step(&mut self, scale_step: f64) -> Result<()> { ... }
fn set_scale_thresh(&mut self, scale_thresh: i32) -> Result<()> { ... }
fn set_pos_thresh(&mut self, pos_thresh: i32) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::imgproc::GeneralizedHoughGuil
Required Methods§
fn as_raw_mut_GeneralizedHoughGuil(&mut self) -> *mut c_void
Provided Methods§
Sourcefn set_xi(&mut self, xi: f64) -> Result<()>
fn set_xi(&mut self, xi: f64) -> Result<()>
Angle difference in degrees between two points in feature.
Sourcefn set_levels(&mut self, levels: i32) -> Result<()>
fn set_levels(&mut self, levels: i32) -> Result<()>
Feature table levels.
Sourcefn set_angle_epsilon(&mut self, angle_epsilon: f64) -> Result<()>
fn set_angle_epsilon(&mut self, angle_epsilon: f64) -> Result<()>
Maximal difference between angles that treated as equal.
Sourcefn set_min_angle(&mut self, min_angle: f64) -> Result<()>
fn set_min_angle(&mut self, min_angle: f64) -> Result<()>
Minimal rotation angle to detect in degrees.
Sourcefn set_max_angle(&mut self, max_angle: f64) -> Result<()>
fn set_max_angle(&mut self, max_angle: f64) -> Result<()>
Maximal rotation angle to detect in degrees.
Sourcefn set_angle_step(&mut self, angle_step: f64) -> Result<()>
fn set_angle_step(&mut self, angle_step: f64) -> Result<()>
Angle step in degrees.
Sourcefn set_angle_thresh(&mut self, angle_thresh: i32) -> Result<()>
fn set_angle_thresh(&mut self, angle_thresh: i32) -> Result<()>
Angle votes threshold.
Sourcefn set_min_scale(&mut self, min_scale: f64) -> Result<()>
fn set_min_scale(&mut self, min_scale: f64) -> Result<()>
Minimal scale to detect.
Sourcefn set_max_scale(&mut self, max_scale: f64) -> Result<()>
fn set_max_scale(&mut self, max_scale: f64) -> Result<()>
Maximal scale to detect.
Sourcefn set_scale_step(&mut self, scale_step: f64) -> Result<()>
fn set_scale_step(&mut self, scale_step: f64) -> Result<()>
Scale step.
Sourcefn set_scale_thresh(&mut self, scale_thresh: i32) -> Result<()>
fn set_scale_thresh(&mut self, scale_thresh: i32) -> Result<()>
Scale votes threshold.
Sourcefn set_pos_thresh(&mut self, pos_thresh: i32) -> Result<()>
fn set_pos_thresh(&mut self, pos_thresh: i32) -> Result<()>
Position votes threshold.
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.