CudaInvokeMulAndScaleSpectrums Method |
http://www.emgu.com
Performs a per-element multiplication of two Fourier spectrums and scales the result.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void MulAndScaleSpectrums(
IInputArray src1,
IInputArray src2,
IOutputArray dst,
int flags,
float scale,
bool conjB = false,
Stream stream = null
)
Public Shared Sub MulAndScaleSpectrums (
src1 As IInputArray,
src2 As IInputArray,
dst As IOutputArray,
flags As Integer,
scale As Single,
Optional conjB As Boolean = false,
Optional stream As Stream = Nothing
)
public:
static void MulAndScaleSpectrums(
IInputArray^ src1,
IInputArray^ src2,
IOutputArray^ dst,
int flags,
float scale,
bool conjB = false,
Stream^ stream = nullptr
)
static member MulAndScaleSpectrums :
src1 : IInputArray *
src2 : IInputArray *
dst : IOutputArray *
flags : int *
scale : float32 *
?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, simply add a 0 value. - scale
- Type: SystemSingle
Scale constant. - 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