pastie/filters/histequalize.h

16 lines
248 B
C++

#ifndef HISTEQUALIZE_H
#define HISTEQUALIZE_H
#include "filter.h"
class HistEqualize : public Filter
{
public:
QString getName() const { return "HistEqualize"; }
protected:
Result * applyInternal(Image *img);
};
#endif // HISTEQUALIZE_H