#ifndef IMAGEPROCESS_H #define IMAGEPROCESS_H #include using namespace std; typedef unsigned char uchar; typedef unsigned int uint; vector histogram_bit8(uchar* data, int rows, int cols = 3456); void histogram_bit32(uchar* data, int rows, int cols, vector& r, vector& g, vector& b); #endif // IMAGEPROCESS_H