#ifndef APPLYCLAHE_H #define APPLYCLAHE_H #include #include #include #include #include class ApplyCLAHE { cv::Mat _lumImage; cv::Mat _image[3]; double _scale; public: ApplyCLAHE(); void loadFile(const QString &path); void saveFile(const QString &path); void apply(float clipLimit, int kernelSize); QPixmap getImage() const; QPixmap getLumImage() const; bool imageLoaded() const; }; #endif // APPLYCLAHE_H