This method creates a single raster image from seperate bmp images representing each of the YCrCb planes
Public Function CombineYccImage(yb As System.Drawing.Image, cr As System.Drawing.Image, cb As System.Drawing.Image, destinationImage As System.Drawing.Image) As Boolean
public bool CombineYccImage(System.Drawing.Image yb, System.Drawing.Image cr, System.Drawing.Image cb, ref System.Drawing.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.