1
0

Rename CLAHE to ApplyCLAHE

This commit is contained in:
2020-04-26 08:24:50 +02:00
parent dc2f0e3490
commit 508d8f44f0
5 changed files with 24 additions and 24 deletions
+3 -3
View File
@@ -6,14 +6,14 @@
#include <QLineEdit>
#include <QDockWidget>
#include <QHBoxLayout>
#include "clahe.h"
#include "applyclahe.h"
const QString imageFilter = "Images (*.png *.jpg *.jpeg);;All files (*)";
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent)
{
setupUI();
_clahe = new CLAHE;
_clahe = new ApplyCLAHE;
}
MainWindow::~MainWindow()
@@ -86,7 +86,7 @@ void MainWindow::setupUI()
connect(applyButton, SIGNAL(clicked()), this, SLOT(applyClahe()));
_kernelSizeSelect = new QComboBox;
_kernelSizeSelect->addItems({"8", "16", "32", "64", "128", "256"});
_kernelSizeSelect->addItems({"8", "12", "16", "24", "32", "64", "128", "256"});
connect(_kernelSizeSelect, SIGNAL(currentIndexChanged(int)), this, SLOT(applyLive()));
QHBoxLayout *claheLayout = new QHBoxLayout;