removed dependency on qt

This commit is contained in:
ganovelli 2008-06-23 14:20:52 +00:00
parent 006b7df1b8
commit 3d21fcba1d
1 changed files with 3 additions and 1 deletions

View File

@ -65,7 +65,9 @@ static bool ComputeSimilarityMatchMatrix( Matrix44x &res,
for(size_t i=0;i<( Pmov.size()-1);++i)
{
scalingFactor += Distance(Pmov[i],Pmov[i+1])/ Distance(Pfix[i],Pfix[i+1]);
qDebug("Scaling Factor is %f",scalingFactor/(i+1));
#ifdef _DEBUG
printf("Scaling Factor is %f",scalingFactor/(i+1));
#endif
}
scalingFactor/=(Pmov.size()-1);