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
Syntaxpublic static void MulSpectrums(
IInputArray src1,
IInputArray src2,
IOutputArray dst,
int flags,
bool conjB = false,
Stream stream = null
)
Public Shared Sub MulSpectrums (
src1 As IInputArray,
src2 As IInputArray,
dst As IOutputArray,
flags As Integer,
Optional conjB As Boolean = false,
Optional stream As Stream = Nothing
)
public:
static void MulSpectrums(
IInputArray^ src1,
IInputArray^ src2,
IOutputArray^ dst,
int flags,
bool conjB = false,
Stream^ stream = nullptr
)
static member MulSpectrums :
src1 : IInputArray *
src2 : IInputArray *
dst : IOutputArray *
flags : int *
?conjB : bool *
?stream : Stream
(* Defaults:
let _conjB = defaultArg conjB false
let _stream = defaultArg stream null
*)
-> unit
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