pub trait CUDA_HoughSegmentDetectorTraitConst: AlgorithmTraitConst {
// Required method
fn as_raw_CUDA_HoughSegmentDetector(&self) -> *const c_void;
// Provided methods
fn get_rho(&self) -> Result<f32> { ... }
fn get_theta(&self) -> Result<f32> { ... }
fn get_min_line_length(&self) -> Result<i32> { ... }
fn get_max_line_gap(&self) -> Result<i32> { ... }
fn get_max_lines(&self) -> Result<i32> { ... }
fn get_threshold(&self) -> Result<i32> { ... }
}
Expand description
Constant methods for crate::cudaimgproc::CUDA_HoughSegmentDetector
Required Methods§
fn as_raw_CUDA_HoughSegmentDetector(&self) -> *const c_void
Provided Methods§
fn get_rho(&self) -> Result<f32>
fn get_theta(&self) -> Result<f32>
fn get_min_line_length(&self) -> Result<i32>
fn get_max_line_gap(&self) -> Result<i32>
fn get_max_lines(&self) -> Result<i32>
fn get_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.