1
0

Finished prototype

This commit is contained in:
2020-01-22 18:53:56 +01:00
parent 66b14d5964
commit e47dad757e
7 changed files with 251 additions and 27 deletions
+2 -1
View File
@@ -11,13 +11,14 @@ class CLAHE
{
cv::Mat _lumImage;
cv::Mat _image[3];
cv::Ptr<cv::CLAHE> _clahe;
double _scale;
public:
CLAHE();
void loadFile(const QString &path);
void saveFile(const QString &path);
void apply(float clipLimit, int kernelSize);
QPixmap getImage() const;
QPixmap getLumImage() const;
};
#endif // CLAHE_H