Click or drag to resize

CudaInvokeCvtColor Method

http://www.emgu.com
Converts image from one color space to another

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void CvtColor(
	IInputArray src,
	IOutputArray dst,
	ColorConversion code,
	int dcn = 0,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The source GpuMat
dst
Type: Emgu.CVIOutputArray
The destination GpuMat
code
Type: Emgu.CV.CvEnumColorConversion
The color conversion code
dcn (Optional)
Type: SystemInt32
Number of channels in the destination image. If the parameter is 0, the number of the channels is derived automatically from src and the code .
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