Add a newline on every line.

Text files should have a newline as their last character. This isn't
strictly required (many tools will work), but it makes parsing of
these files easier, plus it keeps the txt files similar with other
image datasets.
This commit is contained in:
Trenton Schulz 2020-08-05 10:44:24 +02:00
parent 7aa9d36a90
commit 189006399a

View File

@ -137,8 +137,6 @@ void MainWindow::save_label_data()const
{ {
for(int i = 0; i < ui->label_image->m_objBoundingBoxes.size(); i++) 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]; ObjectLabelingBox objBox = ui->label_image->m_objBoundingBoxes[i];
if(ui->checkBox_cropping->isChecked()) if(ui->checkBox_cropping->isChecked())
@ -169,7 +167,7 @@ void MainWindow::save_label_data()const
fileOutputLabelData << " "; fileOutputLabelData << " ";
fileOutputLabelData << std::fixed << std::setprecision(6) << width; fileOutputLabelData << std::fixed << std::setprecision(6) << width;
fileOutputLabelData << " "; fileOutputLabelData << " ";
fileOutputLabelData << std::fixed << std::setprecision(6) << height; fileOutputLabelData << std::fixed << std::setprecision(6) << height << std::endl;
} }
fileOutputLabelData.close(); fileOutputLabelData.close();