http://www.emgu.com
Shifts a matrix to the right (c = a >> scalar)
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void RShift(
IntPtr a,
ref MCvScalar scalar,
IntPtr c,
IntPtr stream
)
Public Shared Sub RShift (
a As IntPtr,
ByRef scalar As MCvScalar,
c As IntPtr,
stream As IntPtr
)
public:
static void RShift(
IntPtr a,
MCvScalar% scalar,
IntPtr c,
IntPtr stream
)
static member RShift :
a : IntPtr *
scalar : MCvScalar byref *
c : IntPtr *
stream : IntPtr -> unit
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