Click or drag to resize
CudaInvokeLShift Method
http://www.emgu.com
Shifts a matrix to the left (c = a << scalar)

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void LShift(
	IntPtr a,
	ref MCvScalar scalar,
	IntPtr c,
	IntPtr stream
)

Parameters

a
Type: SystemIntPtr
The matrix to be shifted.
scalar
Type: Emgu.CV.StructureMCvScalar
The scalar to shift by.
c
Type: SystemIntPtr
The result of the shift
stream
Type: SystemIntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).
See Also