remove cout

cout causes lag
This commit is contained in:
Yonghye Kwon 2020-08-22 01:10:44 +09:00 committed by GitHub
parent 2c47692b3d
commit e002e18a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -212,7 +212,7 @@ void MainWindow::load_label_list_data(QString qstrLabelListFile)
while(getline(inputLabelListFile, strLabel)) while(getline(inputLabelListFile, strLabel))
{ {
int nRow = ui->tableWidget_label->rowCount(); int nRow = ui->tableWidget_label->rowCount();
std::cout << nRow << endl;
QString qstrLabel = QString().fromStdString(strLabel); QString qstrLabel = QString().fromStdString(strLabel);
QColor labelColor = label_img::BOX_COLORS[(fileIndex++)%10]; QColor labelColor = label_img::BOX_COLORS[(fileIndex++)%10];
m_objList << qstrLabel; m_objList << qstrLabel;
@ -350,7 +350,6 @@ void MainWindow::on_pushButton_next_clicked()
void MainWindow::keyPressEvent(QKeyEvent * event) void MainWindow::keyPressEvent(QKeyEvent * event)
{ {
cout << "key pressed" <<endl;
int nKey = event->key(); int nKey = event->key();
bool graveAccentKeyIsPressed = (nKey == Qt::Key_QuoteLeft); bool graveAccentKeyIsPressed = (nKey == Qt::Key_QuoteLeft);