http://www.emgu.com
Shifts a matrix to the left (c = a << scalar)
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void LShift(
IInputArray a,
MCvScalar scalar,
IOutputArray c,
Stream stream = null
)
Public Shared Sub LShift (
a As IInputArray,
scalar As MCvScalar,
c As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void LShift(
IInputArray^ a,
MCvScalar scalar,
IOutputArray^ c,
Stream^ stream = nullptr
)
static member LShift :
a : IInputArray *
scalar : MCvScalar *
c : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- a
- Type: Emgu.CVIInputArray
The matrix to be shifted. - scalar
- Type: Emgu.CV.StructureMCvScalar
The scalar to shift by. - c
- Type: Emgu.CVIOutputArray
The result of the shift - 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