[][src]Function opencv::ximgproc::gradient_paillou_y

pub fn gradient_paillou_y(
    op: &dyn ToInputArray,
    _dst: &mut dyn ToOutputArray,
    alpha: f64,
    omega: f64
) -> Result<()>

Applies Paillou filter to an image.

For more details about this implementation, please see paillou1997detecting

Parameters

  • op: Source CV_8U(S) or CV_16U(S), 1-channel or 3-channels image.
  • _dst: result CV_32F image with same number of channel than op.
  • omega: double see paper
  • alpha: double see paper

See also

GradientPaillouX, GradientPaillouY