mulSpectrumsAsync function
Future<Mat>
mulSpectrumsAsync(
- InputArray a,
- InputArray b,
- int flags, {
- OutputArray? c,
- 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, {
OutputArray? c,
bool conjB = false,
}) async {
c ??= Mat.empty();
return cvRunAsync0(
(callback) => ccore.cv_mulSpectrums(a.ref, b.ref, c!.ref, flags, conjB, callback),
(completer) {
return completer.complete(c);
},
);
}