Skip to content

Commit

Permalink
Remove debugging output.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13991 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mmassing committed Aug 1, 2010
1 parent 0532c6d commit 5db8ab2
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/plugins/georeferencer/qgsgeoreftransform.cpp
Expand Up @@ -603,17 +603,6 @@ bool QgsProjectiveGeorefTransform::updateParametersFromGCPs( const std::vector<Q
{
mParameters.Hinv[i] = adjoint[i]*oo_det;
}

for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
double sum = 0.0;
for (int k = 0; k < 3; k++) {
sum+= H[j*3 + k]*mParameters.Hinv[i + k*3];
}
std::cout<<sum<<", ";
}
std::cout<<std::endl;
}
}
return true;
}
Expand Down

0 comments on commit 5db8ab2

Please sign in to comment.