CvInvokeCvtColor Method (IInputArray, IOutputArray, Type, Type) |
http://www.emgu.com
Converts input image from one color space to another. The function ignores colorModel and channelSeq fields of IplImage header, so the source image color space should be specified correctly (including order of the channels in case of RGB space, e.g. BGR means 24-bit format with B0 G0 R0 B1 G1 R1 ... layout, whereas RGB means 24-bit format with R0 G0 B0 R1 G1 B1 ... layout).
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void CvtColor(
IInputArray src,
IOutputArray dest,
Type srcColor,
Type destColor
)
Public Shared Sub CvtColor (
src As IInputArray,
dest As IOutputArray,
srcColor As Type,
destColor As Type
)
public:
static void CvtColor(
IInputArray^ src,
IOutputArray^ dest,
Type^ srcColor,
Type^ destColor
)
static member CvtColor :
src : IInputArray *
dest : IOutputArray *
srcColor : Type *
destColor : Type -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source 8-bit (8u), 16-bit (16u) or single-precision floating-point (32f) image - dest
- Type: Emgu.CVIOutputArray
The destination image of the same data type as the source one. The number of channels may be different - srcColor
- Type: SystemType
Source color type. - destColor
- Type: SystemType
Destination color type
See Also