pub trait GeneralizedHoughGuil: GeneralizedHough + GeneralizedHoughGuilConst {
Show 13 methods fn as_raw_mut_GeneralizedHoughGuil(&mut self) -> *mut c_void; 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<()> { ... }
}

Required Methods§

Provided Methods§

Angle difference in degrees between two points in feature.

Feature table levels.

Maximal difference between angles that treated as equal.

Minimal rotation angle to detect in degrees.

Maximal rotation angle to detect in degrees.

Angle step in degrees.

Angle votes threshold.

Minimal scale to detect.

Maximal scale to detect.

Scale step.

Scale votes threshold.

Position votes threshold.

Implementors§