removed constant logging

This commit is contained in:
Raphael Maenle 2019-06-19 09:29:22 +02:00
parent 49374a4323
commit 6b8dce9876

View File

@ -1568,6 +1568,7 @@ void MsckfVio::featureJacobian(
H_x = A.transpose() * H_xj;
r = A.transpose() * r_j;
/*
ofstream myfile;
myfile.open ("/home/raphael/dev/MSCKF_ws/log.txt");
myfile << "Hx\n" << H_x << "r\n" << r << "from residual estimated error state: " << H_x.colPivHouseholderQr().solve(r) << endl;
@ -1575,7 +1576,7 @@ void MsckfVio::featureJacobian(
cout << "---------- LOGGED -------- " << endl;
nh.setParam("/play_bag", false);
*/
return;
}