Rename CLAHE to ApplyCLAHE
This commit is contained in:
+3
-3
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user