EgtGeomKernel :

- piccolo affinamento nell'uso di SVD per Zmap.
This commit is contained in:
Dario Sassi
2020-08-06 18:49:50 +00:00
parent 3020d9579e
commit 688403b46c
+2 -2
View File
@@ -1993,8 +1993,8 @@ VolZmap::ExtMarchingCubes( int nBlock, VoxelContainer& vVox) const
// calcolo SVD
SvdDecomposer svd( dMatrixN, Eigen::ComputeThinU | Eigen::ComputeThinV) ;
auto dMatrixV = svd.matrixV() ;
auto dSingularValue = svd.singularValues() ;
const auto& dSingularValue = svd.singularValues() ;
const auto& dMatrixV = svd.matrixV() ;
// Se la feature è un edge annullo il valore singolare minore.
if ( nFeatureType == EDGE) {