pub trait GeneralizedHoughGuilConst: GeneralizedHoughConst {
Show 13 methods fn as_raw_GeneralizedHoughGuil(&self) -> *const c_void; 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

finds arbitrary template in the grayscale image using Generalized Hough Transform

Detects position, translation and rotation Guil1999 .

Required Methods

Provided Methods

Implementors