Performs per-element multiplication of the two CCS-packed or complex matrices that are results of real or complex Fourier transform.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.649 (2.1.0.649)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvMulSpectrums(
	IntPtr src1,
	IntPtr src2,
	IntPtr dst,
	MUL_SPECTRUMS_TYPE flags
)
Public Shared Sub cvMulSpectrums ( _
	src1 As IntPtr, _
	src2 As IntPtr, _
	dst As IntPtr, _
	flags As MUL_SPECTRUMS_TYPE _
)
public:
static void cvMulSpectrums(
	IntPtr src1, 
	IntPtr src2, 
	IntPtr dst, 
	MUL_SPECTRUMS_TYPE flags
)

Parameters

src1
IntPtr
The first source array
src2
IntPtr
The second source array
dst
IntPtr
The destination array of the same type and the same size of the sources
flags
MUL_SPECTRUMS_TYPE

[Missing <param name="flags"/> documentation for "M:Emgu.CV.CvInvoke.cvMulSpectrums(System.IntPtr,System.IntPtr,System.IntPtr,Emgu.CV.CvEnum.MUL_SPECTRUMS_TYPE)"]

See Also