19 lines
339 B
C++
19 lines
339 B
C++
#ifndef UNFILTERAVERAGE_H
|
|
#define UNFILTERAVERAGE_H
|
|
|
|
class UnfilterAverage{
|
|
|
|
private:
|
|
|
|
unsigned int bytesPerPixel=0;
|
|
|
|
public:
|
|
|
|
UnfilterAverage(unsigned int bitsPerPixel);
|
|
|
|
unsigned char* unfilter(unsigned char* upperLine,unsigned char* currentLine,unsigned int dataLength);
|
|
|
|
};
|
|
|
|
#endif // UNFILTERAVERAGE_H
|