/* * File: imageIntegral.h * Author: Bartłomiej Kwiatek * * Created on 7 luty 2013, 09:54 */ #ifndef IMAGEINTEGRAL_H #define IMAGEINTEGRAL_H #include "imageColorPPM.h" #include "imageGryscalePGM.h" class BK_imageIntegral { private: unsigned long **image; int width; int height; public: BK_imageIntegral(int width, int height); ~BK_imageIntegral(); void computeIntegral(BK_imageGryscalePGM *inputImg); void computeIntegral2(BK_imageGryscalePGM *inputImg); void setData(unsigned long value, int x, int y); unsigned long getData(int x, int y); void setWidth(int width); int getWidth(); void setHeight(int height); int getHeight(); }; #endif /* IMAGEINTEGRAL_H */