mulSpectrums function

Mat mulSpectrums(
  1. InputArray a,
  2. InputArray b,
  3. int flags, {
  4. OutputArray? c,
  5. bool conjB = false,
})

Mulspectrums performs the per-element multiplication of two Fourier spectrums.

For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga3ab38646463c59bf0ce962a9d51db64f

Implementation

Mat mulSpectrums(
  InputArray a,
  InputArray b,
  int flags, {
  OutputArray? c,
  bool conjB = false,
}) {
  c ??= Mat.empty();
  cvRun(() => ccore.Mat_MulSpectrums(a.ref, b.ref, c!.ref, flags, conjB));
  return c;
}