[][src]Function opencv::cudaimgproc::create_harris_corner

pub fn create_harris_corner(
    src_type: i32,
    block_size: i32,
    ksize: i32,
    k: f64,
    border_type: i32
) -> Result<Ptr<dyn CUDA_CornernessCriteria>>

Creates implementation for Harris cornerness criteria.

Parameters

  • srcType: Input source type. Only CV_8UC1 and CV_32FC1 are supported for now.
  • blockSize: Neighborhood size.
  • ksize: Aperture parameter for the Sobel operator.
  • k: Harris detector free parameter.
  • borderType: Pixel extrapolation method. Only BORDER_REFLECT101 and BORDER_REPLICATE are supported for now.

See also

cornerHarris

C++ default parameters

  • border_type: BORDER_REFLECT101