New training dialog + selection of the most important features

This commit is contained in:
Daniel Girardeau-Montaut
2019-01-20 22:12:20 +01:00
parent 4ec7252b80
commit b5e5597e2d
7 changed files with 419 additions and 111 deletions
+1 -2
View File
@@ -632,7 +632,7 @@ static bool LoadFileCommon( const QString& filename,
std::vector<double> scales;
QTextStream stream(&file);
for (int lineNumber = 0; ; ++lineNumber)
for (int lineNumber = 1; ; ++lineNumber)
{
QString line = stream.readLine();
if (line.isNull())
@@ -640,7 +640,6 @@ static bool LoadFileCommon( const QString& filename,
//eof
break;
}
++lineNumber;
if (line.startsWith("#"))
{