 #ifndef IMAGE_CONVERSION_H
#define IMAGE_CONVERSION_H

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

Bitmap_8bit * convert_24bitRGB_to_8bit(Bitmap_24bitRGB *rgb_bmp);
Bitmap_2bit * threshold_8bit(Bitmap_8bit *source, unsigned char threshold);
Bitmap_8bit * medianFilter(Bitmap_8bit * source);

#endif
