http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Shifts a matrix to the right (c = a >> scalar)
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void RShift( IntPtr a, MCvScalar scalar, IntPtr c, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub RShift ( _ a As IntPtr, _ scalar As MCvScalar, _ c As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void RShift( IntPtr a, MCvScalar scalar, IntPtr c, IntPtr stream ) |
Parameters
- a
- Type: System..::..IntPtr
The matrix to be shifted.
- scalar
- Type: Emgu.CV.Structure..::..MCvScalar
The scalar to shift by.
- c
- Type: System..::..IntPtr
The result of the shift
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).