pub trait RidgeDetectionFilter: AlgorithmTrait + RidgeDetectionFilterConst {
    // Required method
    fn as_raw_mut_RidgeDetectionFilter(&mut self) -> *mut c_void;

    // Provided method
    fn get_ridge_filtered_image(
        &mut self,
        _img: &dyn ToInputArray,
        out: &mut dyn ToOutputArray
    ) -> Result<()> { ... }
}
Expand description

Applies Ridge Detection Filter to an input image. Implements Ridge detection similar to the one in Mathematica using the eigen values from the Hessian Matrix of the input image using Sobel Derivatives. Additional refinement can be done using Skeletonization and Binarization. Adapted from segleafvein and M_RF

Required Methods§

Provided Methods§

source

fn get_ridge_filtered_image( &mut self, _img: &dyn ToInputArray, out: &mut dyn ToOutputArray ) -> Result<()>

Apply Ridge detection filter on input image.

Parameters
  • _img: InputArray as supported by Sobel. img can be 1-Channel or 3-Channels.
  • out: OutputAray of structure as RidgeDetectionFilter::ddepth. Output image with ridges.

Implementations§

source§

impl dyn RidgeDetectionFilter + '_

source

pub fn create( ddepth: i32, dx: i32, dy: i32, ksize: i32, out_dtype: i32, scale: f64, delta: f64, border_type: i32 ) -> Result<Ptr<dyn RidgeDetectionFilter>>

Create pointer to the Ridge detection filter.

Parameters
  • ddepth: Specifies output image depth. Defualt is CV_32FC1
  • dx: Order of derivative x, default is 1
  • dy: Order of derivative y, default is 1
  • ksize: Sobel kernel size , default is 3
  • out_dtype: Converted format for output, default is CV_8UC1
  • scale: Optional scale value for derivative values, default is 1
  • delta: Optional bias added to output, default is 0
  • borderType: Pixel extrapolation method, default is BORDER_DEFAULT
See also

Sobel, threshold, getStructuringElement, morphologyEx.( for additional refinement)

C++ default parameters
  • ddepth: CV_32FC1
  • dx: 1
  • dy: 1
  • ksize: 3
  • out_dtype: CV_8UC1
  • scale: 1
  • delta: 0
  • border_type: BORDER_DEFAULT

Implementors§