This method creates a single raster image from seperate bmp images representing each of the YCrCb planes

[Visual Basic]
Public Function CombineYccImage(yb As Image, cr As Image, cb As Image, destinationImage As Image) As Boolean
[C#]
public bool CombineYccImage(Image yb, Image cr, Image cb, ref Image destinationImage) ;

Parameters

yb
     The 8 bit grayscale image representing the Y plane

cr
     The 8 bit grayscale image representing the Cr plane

cb
     The 8 bit grayscale image representing the Cb plane

destinationImage
     The 24 bit color raster image created from the combination of the above Y, Cr, and Cb plane images

Return Value

Returns True if successful. Returns False if unsuccessful.

Explanation

The CombineYccImage method creates a single raster image from seperate bmp images representing each of the YCrCb planes. The various images representing each of the YCrCb planes are 8 bit grayscale. If successful, the resulting image created by combining these Y, Cr, and Cb plane images is a 24 bit color raster image and is set in the destinationImage parameter.

See Also

Effect Class | Effect Members

The ImageKit.NET3 is created by Newtone Corporation