remove unused member remean that was just initialized

This commit is contained in:
Benoit Jacob 2009-05-05 17:29:44 +00:00
parent 46e1162a39
commit 66f059b99d

View File

@ -160,7 +160,6 @@ void fitHyperplane(int numPoints,
// compute the covariance matrix
CovMatrixType covMat = CovMatrixType::Zero(size, size);
VectorType remean = VectorType::Zero(size);
for(int i = 0; i < numPoints; ++i)
{
VectorType diff = (*(points[i]) - mean).conjugate();