PCA3 option added

This commit is contained in:
Daniel Girardeau-Montaut
2019-03-22 14:50:45 +01:00
parent 6b3170e4ab
commit 5e07b275b3
2 changed files with 9 additions and 0 deletions
+4
View File
@@ -204,6 +204,7 @@ bool NeighborhoodFeature::computeValue(CCLib::DgmOctree::NeighboursSet& pointsIn
//features relying on the PCA
case PCA1:
case PCA2:
case PCA3:
case SPHER:
case LINEA:
case PLANA:
@@ -217,6 +218,9 @@ bool NeighborhoodFeature::computeValue(CCLib::DgmOctree::NeighboursSet& pointsIn
case PCA2:
f = CCLib::Neighbourhood::PCA2;
break;
case PCA3:
f = CCLib::Neighbourhood::SurfaceVariation;
break;
case SPHER:
f = CCLib::Neighbourhood::Sphericity;
break;