mulSpectrumsAsync function

Future<Mat> mulSpectrumsAsync(
  1. InputArray a,
  2. InputArray b,
  3. int flags, {
  4. 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

Future<Mat> mulSpectrumsAsync(
  InputArray a,
  InputArray b,
  int flags, {
  bool conjB = false,
}) async =>
    cvRunAsync(
      (callback) => ccore.core_MulSpectrums_Async(a.ref, b.ref, flags, conjB, callback),
      matCompleter,
    );