[][src]Function opencv::ximgproc::gradient_deriche_x

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

Applies X Deriche filter to an image.

For more details about this implementation, please see http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.476.5736&rep=rep1&type=pdf

Parameters

  • op: Source 8-bit or 16bit image, 1-channel or 3-channel image.
  • dst: result CV_32FC image with same number of channel than _op.
  • alpha: double see paper
  • omega: double see paper