Click or drag to resize

CudaInvokeMulSpectrums Method

http://www.emgu.com
Performs a per-element multiplication of two Fourier spectrums.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void MulSpectrums(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	int flags,
	bool conjB = false,
	Stream stream = null
)

Parameters

src1
Type: Emgu.CVIInputArray
First spectrum.
src2
Type: Emgu.CVIInputArray
Second spectrum with the same size and type.
dst
Type: Emgu.CVIOutputArray
Destination spectrum.
flags
Type: SystemInt32
Mock parameter used for CPU/CUDA interfaces similarity.
conjB (Optional)
Type: SystemBoolean
Optional flag to specify if the second spectrum needs to be conjugated before the multiplication.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also