Struct opencv::cudaimgproc::CUDA_HoughSegmentDetector
source · pub struct CUDA_HoughSegmentDetector { /* private fields */ }Expand description
Base class for line segments detector algorithm. :
Trait Implementations§
source§impl AlgorithmTraitConst for CUDA_HoughSegmentDetector
impl AlgorithmTraitConst for CUDA_HoughSegmentDetector
fn as_raw_Algorithm(&self) -> *const c_void
source§fn write(&self, fs: &mut FileStorage) -> Result<()>
fn write(&self, fs: &mut FileStorage) -> Result<()>
Stores algorithm parameters in a file storage
source§fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
fn write_1(&self, fs: &mut FileStorage, name: &str) -> Result<()>
Stores algorithm parameters in a file storage Read more
source§fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
fn write_with_name(&self, fs: &Ptr<FileStorage>, name: &str) -> Result<()>
@deprecated Read more
source§fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
fn write_with_name_def(&self, fs: &Ptr<FileStorage>) -> Result<()>
👎Deprecated:
Note
Deprecated: ## Note
This alternative version of AlgorithmTraitConst::write_with_name function uses the following default values for its arguments: Read more
source§fn empty(&self) -> Result<bool>
fn empty(&self) -> Result<bool>
Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read
source§fn save(&self, filename: &str) -> Result<()>
fn save(&self, filename: &str) -> Result<()>
Saves the algorithm to a file.
In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).
source§fn get_default_name(&self) -> Result<String>
fn get_default_name(&self) -> Result<String>
Returns the algorithm string identifier.
This string is used as top level xml/yml node tag when the object is saved to a file or string.
source§impl Boxed for CUDA_HoughSegmentDetector
impl Boxed for CUDA_HoughSegmentDetector
source§impl CUDA_HoughSegmentDetectorTrait for CUDA_HoughSegmentDetector
impl CUDA_HoughSegmentDetectorTrait for CUDA_HoughSegmentDetector
fn as_raw_mut_CUDA_HoughSegmentDetector(&mut self) -> *mut c_void
source§fn detect(
&mut self,
src: &impl ToInputArray,
lines: &mut impl ToOutputArray,
stream: &mut Stream
) -> Result<()>
fn detect( &mut self, src: &impl ToInputArray, lines: &mut impl ToOutputArray, stream: &mut Stream ) -> Result<()>
Finds line segments in a binary image using the probabilistic Hough transform. Read more
source§fn detect_def(
&mut self,
src: &impl ToInputArray,
lines: &mut impl ToOutputArray
) -> Result<()>
fn detect_def( &mut self, src: &impl ToInputArray, lines: &mut impl ToOutputArray ) -> Result<()>
Finds line segments in a binary image using the probabilistic Hough transform. Read more
fn set_rho(&mut self, rho: f32) -> Result<()>
fn set_theta(&mut self, theta: f32) -> Result<()>
fn set_min_line_length(&mut self, min_line_length: i32) -> Result<()>
fn set_max_line_gap(&mut self, max_line_gap: i32) -> Result<()>
fn set_max_lines(&mut self, max_lines: i32) -> Result<()>
fn set_threshold(&mut self, threshold: i32) -> Result<()>
source§impl CUDA_HoughSegmentDetectorTraitConst for CUDA_HoughSegmentDetector
impl CUDA_HoughSegmentDetectorTraitConst for CUDA_HoughSegmentDetector
fn as_raw_CUDA_HoughSegmentDetector(&self) -> *const c_void
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>
source§impl Debug for CUDA_HoughSegmentDetector
impl Debug for CUDA_HoughSegmentDetector
source§impl Drop for CUDA_HoughSegmentDetector
impl Drop for CUDA_HoughSegmentDetector
source§impl From<CUDA_HoughSegmentDetector> for Algorithm
impl From<CUDA_HoughSegmentDetector> for Algorithm
source§fn from(s: CUDA_HoughSegmentDetector) -> Self
fn from(s: CUDA_HoughSegmentDetector) -> Self
Converts to this type from the input type.
impl Send for CUDA_HoughSegmentDetector
Auto Trait Implementations§
impl RefUnwindSafe for CUDA_HoughSegmentDetector
impl !Sync for CUDA_HoughSegmentDetector
impl Unpin for CUDA_HoughSegmentDetector
impl UnwindSafe for CUDA_HoughSegmentDetector
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more