09-11-2007 06:52 AM
09-11-2007 11:43 AM
A color image consists of three color planes (RGB). Each color plane is an 8 bit image. You can also generate other color planes (HSL) based on the original colors.
Extract color plane pulls out the information for a single color plane and discards all the other information about the original image. This is how you convert an image from color to grayscale. It is assumed that all the critical information is present in the extracted color plane.
Bruce