mirror of
https://github.com/dgirardeau/q3DMASC.git
synced 2026-08-29 16:40:49 +08:00
Option to evaluation a classifier with a point cloud
This commit is contained in:
@@ -694,6 +694,19 @@ static bool LoadFileCommon( const QString& filename,
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else if (upperLine.startsWith("TEST:")) //test cloud
|
||||
{
|
||||
if (cloudsAreProvided)
|
||||
{
|
||||
//no need to load the clouds in this case
|
||||
continue;
|
||||
}
|
||||
QString command = line.mid(5);
|
||||
if (!ReadCloud("TEST=" + command, clouds, fi.absoluteDir(), lineNumber)) //add the TEST keyword so that the cloud will be loaded as the TEST cloud
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else if (upperLine.startsWith("CORE_POINTS:")) //core points
|
||||
{
|
||||
if (!corePoints)
|
||||
|
||||
Reference in New Issue
Block a user