#include "mainwindow.h" #include "ui_mainwindow.h" #include #include #include #include #include #include using std::cout; using std::endl; using std::ofstream; using std::ifstream; using std::string; MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); connect(ui->label_image, SIGNAL(Mouse_Moved()), this, SLOT(mouseCurrentPos())); connect(ui->label_image, SIGNAL(Mouse_Pressed()), this, SLOT(mousePressed())); connect(ui->label_image, SIGNAL(Mouse_Release()), this, SLOT(mouseReleased())); connect(new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_S), this), SIGNAL(activated()), this, SLOT(save_label_data())); connect(new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_C), this), SIGNAL(activated()), this, SLOT(clear_label_data())); connect(new QShortcut(QKeySequence(Qt::Key_S), this), SIGNAL(activated()), this, SLOT(next_label())); connect(new QShortcut(QKeySequence(Qt::Key_W), this), SIGNAL(activated()), this, SLOT(prev_label())); connect(new QShortcut(QKeySequence(Qt::Key_A), this), SIGNAL(activated()), this, SLOT(prev_img())); connect(new QShortcut(QKeySequence(Qt::Key_D), this), SIGNAL(activated()), this, SLOT(next_img())); connect(new QShortcut(QKeySequence(Qt::Key_Space), this), SIGNAL(activated()), this, SLOT(next_img())); ui->tableWidget_label->horizontalHeader()->setStyleSheet(""); disconnect(ui->tableWidget_label->horizontalHeader(), SIGNAL(sectionPressed(int)),ui->tableWidget_label, SLOT(selectColumn(int))); } MainWindow::~MainWindow() { delete ui; } void MainWindow::on_pushButton_open_files_clicked() { pjreddie_style_msgBox(QMessageBox::Information,"Help", "Step 1. Open Your Data Set Directory"); m_fileDir = QFileDialog::getExistingDirectory( this, tr("Open Dataset Directory"), "./"); QDir dir(m_fileDir); QStringList fileList = dir.entryList( QStringList() << "*.jpg" << "*.JPG" << "*.png", QDir::Files); if(fileList.size() == 0) { pjreddie_style_msgBox(QMessageBox::Critical,"Error", "This folder is empty"); return; } pjreddie_style_msgBox(QMessageBox::Information,"Help", "Step 2. Open Your Label List File(*.txt or *.names)"); QString fileLabelList = QFileDialog::getOpenFileName( this, tr("Open LabelList file"), "./", tr("LabelList Files (*.txt *.names)")); if(fileLabelList.size() == 0) { pjreddie_style_msgBox(QMessageBox::Critical,"Error", "LabelList file is not opened()"); return; } m_fileList = fileList; for(QString& str: m_fileList) str = m_fileDir + "/" + str; load_label_list_data(fileLabelList); init(); } void MainWindow::init() { ui->horizontalSlider_images->setEnabled(true); ui->pushButton_next->setEnabled(true); ui->pushButton_prev->setEnabled(true); ui->pushButton_save->setEnabled(true); ui->horizontalSlider_images->setRange(0, m_fileList.size() - 1); set_label(0); goto_img(0); } void MainWindow::set_label_progress(const int fileIndex) { QString strCurFileIndex = QString::number(fileIndex); QString strEndFileIndex = QString::number(m_fileList.size() - 1); ui->label_progress->setText(strCurFileIndex + " / " + strEndFileIndex); } void MainWindow::set_focused_file(const int fileIndex) { ui->label_file->setText("File: " + m_fileList.at(fileIndex)); } void MainWindow::goto_img(int fileIndex) { bool indexIsOutOfRange = (fileIndex < 0 || fileIndex > m_fileList.size() - 1); if(!indexIsOutOfRange) { m_fileIndex = fileIndex; ui->label_image->openImage(m_fileList.at(m_fileIndex)); ui->label_image->loadLabelData(get_labeling_data(m_fileList.at(m_fileIndex))); ui->label_image->showImage(); set_label_progress(m_fileIndex); set_focused_file(m_fileIndex); } } void MainWindow::next_img() { save_label_data(); goto_img(m_fileIndex + 1); ui->horizontalSlider_images->blockSignals(true); ui->horizontalSlider_images->setValue(m_fileIndex); ui->horizontalSlider_images->blockSignals(false); } void MainWindow::prev_img() { save_label_data(); goto_img(m_fileIndex - 1); //it blocks crash with slider change ui->horizontalSlider_images->blockSignals(true); ui->horizontalSlider_images->setValue(m_fileIndex); ui->horizontalSlider_images->blockSignals(false); } void MainWindow::save_label_data()const { if(m_fileList.size() == 0) return; QString qstrOutputLabelData = get_labeling_data(m_fileList.at(m_fileIndex)); ofstream fileOutputLabelData(qstrOutputLabelData.toStdString()); if(fileOutputLabelData.is_open()) { for(int i = 0; i < ui->label_image->m_objBoundingBoxes.size(); i++) { if(i != 0) fileOutputLabelData << '\n'; ObjectLabelingBox objBox = ui->label_image->m_objBoundingBoxes[i]; double midX = static_cast(objBox.box.center().x()) / ui->label_image->m_inputImg.width(); double midY = static_cast(objBox.box.center().y()) / ui->label_image->m_inputImg.height(); double width = static_cast(objBox.box.width()) / ui->label_image->m_inputImg.width(); double height = static_cast(objBox.box.height()) / ui->label_image->m_inputImg.height(); fileOutputLabelData << objBox.label; fileOutputLabelData << " "; fileOutputLabelData << std::fixed << std::setprecision(6) << midX; fileOutputLabelData << " "; fileOutputLabelData << std::fixed << std::setprecision(6) << midY; fileOutputLabelData << " "; fileOutputLabelData << std::fixed << std::setprecision(6) << width; fileOutputLabelData << " "; fileOutputLabelData << std::fixed << std::setprecision(6) << height; } fileOutputLabelData.close(); ui->textEdit_log->setText(qstrOutputLabelData + " saved."); } } void MainWindow::clear_label_data() { ui->label_image->m_objBoundingBoxes.clear(); ui->label_image->showImage(); } void MainWindow::next_label() { set_label(m_labelIndex + 1); } void MainWindow::prev_label() { set_label(m_labelIndex - 1); } void MainWindow::load_label_list_data(QString qstrLabelListFile) { ifstream inputLabelListFile(qstrLabelListFile.toStdString()); if(inputLabelListFile.is_open()) { for(int i = 0 ; i <= ui->tableWidget_label->rowCount(); i++) ui->tableWidget_label->removeRow(ui->tableWidget_label->currentRow()); m_labelNameList.clear(); string strLabel; QStringList verticalHeaderLabels; int fileIndex = 0; while(inputLabelListFile >> strLabel) { int nRow = ui->tableWidget_label->rowCount(); std::cout << nRow << endl; QString qstrLabel = QString().fromStdString(strLabel); QColor labelColor = label_img::BOX_COLORS[(fileIndex++)%10]; m_labelNameList << qstrLabel; ui->tableWidget_label->insertRow(nRow); ui->tableWidget_label->setItem(nRow, 0, new QTableWidgetItem(qstrLabel)); ui->tableWidget_label->item(nRow, 0)->setFlags(ui->tableWidget_label->item(nRow, 0)->flags() ^ Qt::ItemIsEditable); ui->tableWidget_label->setItem(nRow, 1, new QTableWidgetItem(QString().fromStdString(""))); ui->tableWidget_label->item(nRow, 1)->setBackgroundColor(labelColor); ui->tableWidget_label->item(nRow, 1)->setFlags(ui->tableWidget_label->item(nRow, 1)->flags() ^ Qt::ItemIsEditable ^ Qt::ItemIsSelectable); ui->label_image->m_drawObjectBoxColor.push_back(labelColor); } } } QString MainWindow::get_labeling_data(QString qstrImgFile)const { string strImgFile = qstrImgFile.toStdString(); string strLabelData = strImgFile.substr(0, strImgFile.find_last_of('.')) + ".txt"; return QString().fromStdString(strLabelData); } void MainWindow::set_label(int labelIndex) { bool indexIsOutOfRange = (labelIndex < 0 || labelIndex > m_labelNameList.size() - 1); if(!indexIsOutOfRange) { m_labelIndex = labelIndex; ui->label_image->setFocusObjectLabel(m_labelIndex); ui->label_image->setFocusObjectName(m_labelNameList.at(m_labelIndex)); ui->tableWidget_label->setCurrentCell(m_labelIndex, 0); } } void MainWindow::set_label_color(int index, QColor color) { ui->label_image->m_drawObjectBoxColor.replace(index, color); } void MainWindow::pjreddie_style_msgBox(QMessageBox::Icon icon, QString title, QString content) { QMessageBox msgBox(icon, title, content, QMessageBox::Ok); QFont font; font.setBold(true); msgBox.setFont(font); msgBox.button(QMessageBox::Ok)->setFont(font); msgBox.button(QMessageBox::Ok)->setStyleSheet("border-style: outset; border-width: 2px; border-color: rgb(0, 255, 0); color : rgb(0, 255, 0);"); msgBox.setStyleSheet("background-color : rgb(34, 0, 85); color : rgb(0, 255, 0);"); msgBox.exec(); } void MainWindow::wheelEvent(QWheelEvent *ev) { if(ev->delta() > 0) // up Wheel prev_img(); else if(ev->delta() < 0) //down Wheel next_img(); } void MainWindow::on_pushButton_prev_clicked() { prev_img(); } void MainWindow::on_pushButton_next_clicked() { next_img(); } void MainWindow::keyPressEvent(QKeyEvent * event) { cout << "key pressed" <key(); bool graveAccentKeyIsPressed = (nKey == Qt::Key_QuoteLeft); bool numKeyIsPressed = (nKey >= Qt::Key_0 && nKey <= Qt::Key_9 ); if(graveAccentKeyIsPressed) { ui->label_image->setFocusObjectLabel(0); ui->label_image->setFocusObjectName(m_labelNameList.at(0)); ui->tableWidget_label->setCurrentCell(0, 0); //foucs cell(0,0) } else if(numKeyIsPressed) { int asciiToNumber = nKey - Qt::Key_0; if(asciiToNumber < m_labelNameList.size() ) { ui->label_image->setFocusObjectLabel(asciiToNumber); ui->label_image->setFocusObjectName(m_labelNameList.at(asciiToNumber)); ui->tableWidget_label->setCurrentCell(asciiToNumber, 0); } } } void MainWindow::mouseCurrentPos() { } void MainWindow::mousePressed() { } void MainWindow::mouseReleased() { } void MainWindow::on_pushButton_save_clicked() { save_label_data(); } void MainWindow::on_tableWidget_label_cellDoubleClicked(int row, int column) { if(column == 1) { QColor color = QColorDialog::getColor(Qt::white,this,"Set Label Color"); if(color.isValid()) { set_label_color(row, color); ui->tableWidget_label->item(row, 1)->setBackgroundColor(color); } set_label(row); ui->label_image->showImage(); } } void MainWindow::on_tableWidget_label_cellClicked(int row, int column) { set_label(row); } void MainWindow::on_horizontalSlider_images_sliderMoved(int position) { goto_img(position); } void MainWindow::on_horizontalSlider_images_sliderPressed() { }