mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-15 19:29:58 +01:00
added high edit boxes to set color when text is changed
This commit is contained in:
@@ -84,10 +84,12 @@ void ChromaWindow::createControls() {
|
|||||||
connect(low_g, SIGNAL(textChanged(const QString &)), this, SLOT(editSetLowG(const QString &)));
|
connect(low_g, SIGNAL(textChanged(const QString &)), this, SLOT(editSetLowG(const QString &)));
|
||||||
connect(low_r, SIGNAL(textChanged(const QString &)), this, SLOT(editSetLowR(const QString &)));
|
connect(low_r, SIGNAL(textChanged(const QString &)), this, SLOT(editSetLowR(const QString &)));
|
||||||
|
|
||||||
connect(high_b, SIGNAL(returnPressed()), this, SLOT(editSetHigh()));
|
|
||||||
connect(high_g, SIGNAL(returnPressed()), this, SLOT(editSetHigh()));
|
connect(high_b, SIGNAL(textChanged(const QString &)), this, SLOT(editSetHighB(const QString &)));
|
||||||
connect(high_r, SIGNAL(returnPressed()), this, SLOT(editSetHigh()));
|
connect(high_g, SIGNAL(textChanged(const QString &)), this, SLOT(editSetHighG(const QString &)));
|
||||||
|
connect(high_r, SIGNAL(textChanged(const QString &)), this, SLOT(editSetHighR(const QString &)));
|
||||||
|
|
||||||
|
|
||||||
lowColor = new QLabel("", this);
|
lowColor = new QLabel("", this);
|
||||||
highColor = new QLabel("", this);
|
highColor = new QLabel("", this);
|
||||||
|
|
||||||
@@ -372,6 +374,64 @@ void ChromaWindow::editSetLowR(const QString &text) {
|
|||||||
color1_set = true;
|
color1_set = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ChromaWindow::editSetHigh() {
|
void ChromaWindow::editSetHighB(const QString &text) {
|
||||||
|
if(button_select_range->isChecked()==false)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cv::Vec3b low;
|
||||||
|
double lo_b, lo_g, lo_r;
|
||||||
|
lo_b = atof(text.toStdString().c_str());
|
||||||
|
lo_g = atof(high_g->text().toStdString().c_str());
|
||||||
|
lo_r = atof(high_r->text().toStdString().c_str());
|
||||||
|
low[0] = cv::saturate_cast<unsigned char>(lo_b);
|
||||||
|
low[1] = cv::saturate_cast<unsigned char>(lo_g);
|
||||||
|
low[2] = cv::saturate_cast<unsigned char>(lo_r);
|
||||||
|
QColor color_value(low[2], low[1], low[0]);
|
||||||
|
QVariant variant = color_value;
|
||||||
|
QString color_var = variant.toString();
|
||||||
|
set_high_color = color_value;
|
||||||
|
highColor->setStyleSheet("QLabel { background-color :" + color_var + " ; }");
|
||||||
|
highColor->setText("");
|
||||||
|
color2_set = true;
|
||||||
}
|
}
|
||||||
|
void ChromaWindow::editSetHighG(const QString &text) {
|
||||||
|
if(button_select_range->isChecked()==false)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cv::Vec3b low;
|
||||||
|
double lo_b, lo_g, lo_r;
|
||||||
|
lo_b = atof(high_b->text().toStdString().c_str());
|
||||||
|
lo_g = atof(text.toStdString().c_str());
|
||||||
|
lo_r = atof(high_r->text().toStdString().c_str());
|
||||||
|
low[0] = cv::saturate_cast<unsigned char>(lo_b);
|
||||||
|
low[1] = cv::saturate_cast<unsigned char>(lo_g);
|
||||||
|
low[2] = cv::saturate_cast<unsigned char>(lo_r);
|
||||||
|
QColor color_value(low[2], low[1], low[0]);
|
||||||
|
QVariant variant = color_value;
|
||||||
|
QString color_var = variant.toString();
|
||||||
|
set_high_color = color_value;
|
||||||
|
highColor->setStyleSheet("QLabel { background-color :" + color_var + " ; }");
|
||||||
|
highColor->setText("");
|
||||||
|
color2_set = true;
|
||||||
|
}
|
||||||
|
void ChromaWindow::editSetHighR(const QString &text) {
|
||||||
|
if(button_select_range->isChecked()==false)
|
||||||
|
return;
|
||||||
|
|
||||||
|
cv::Vec3b low;
|
||||||
|
double lo_b, lo_g, lo_r;
|
||||||
|
lo_b = atof(high_b->text().toStdString().c_str());
|
||||||
|
lo_g = atof(high_g->text().toStdString().c_str());
|
||||||
|
lo_r = atof(text.toStdString().c_str());
|
||||||
|
low[0] = cv::saturate_cast<unsigned char>(lo_b);
|
||||||
|
low[1] = cv::saturate_cast<unsigned char>(lo_g);
|
||||||
|
low[2] = cv::saturate_cast<unsigned char>(lo_r);
|
||||||
|
QColor color_value(low[2], low[1], low[0]);
|
||||||
|
QVariant variant = color_value;
|
||||||
|
QString color_var = variant.toString();
|
||||||
|
set_high_color = color_value;
|
||||||
|
highColor->setStyleSheet("QLabel { background-color :" + color_var + " ; }");
|
||||||
|
highColor->setText("");
|
||||||
|
color2_set = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ public slots:
|
|||||||
void editSetLowB(const QString &text);
|
void editSetLowB(const QString &text);
|
||||||
void editSetLowG(const QString &text);
|
void editSetLowG(const QString &text);
|
||||||
void editSetLowR(const QString &text);
|
void editSetLowR(const QString &text);
|
||||||
void editSetHigh();
|
void editSetHighB(const QString &text);
|
||||||
|
void editSetHighG(const QString &text);
|
||||||
|
void editSetHighR(const QString &text);
|
||||||
private:
|
private:
|
||||||
void createControls();
|
void createControls();
|
||||||
QRadioButton *button_select_range, *button_select_tolerance;
|
QRadioButton *button_select_range, *button_select_tolerance;
|
||||||
|
|||||||
Reference in New Issue
Block a user