Click or drag to resize

CudaInvokeRShift Method

http://www.emgu.com
Shifts a matrix to the right (c = a >> scalar)

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void RShift(
	IInputArray a,
	MCvScalar scalar,
	IOutputArray c,
	Stream stream = null
)

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