/* color_components.h
 * 
 * Routines here are used to extract certain components of color images.
 * Those include intensity component, R,G,B -components.
 */

#ifndef COLOR_SEGMENTATION_H
#define COLOR_SEGMENTATION_H

#include "bitmap_24bitRGB.h"
#include "bitmap_8bit.h"

Bitmap_8bit * intensityComponent_bmp24bit(Bitmap_24bitRGB *rgbBmp);

#endif
