Method MulSpectrums
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
MulSpectrums(InputArray, InputArray, OutputArray, DftFlags, bool)
Performs the per-element multiplication of two Fourier spectrums.
public static void MulSpectrums(InputArray a, InputArray b, OutputArray c, DftFlags flags, bool conjB = false)
Parameters
aInputArrayfirst input array.
bInputArraysecond input array of the same size and type as src1.
cOutputArrayoutput array of the same size and type as src1.
flagsDftFlagsoperation flags; currently, the only supported flag is cv::DFT_ROWS, which indicates that each row of src1 and src2 is an independent 1D Fourier spectrum. If you do not want to use this flag, then simply add a
0as value.conjBbooloptional flag that conjugates the second input array before the multiplication (true) or not (false).