small fixes
This commit is contained in:
parent
f6a33469f5
commit
4099457045
|
@ -62,14 +62,14 @@ print '\nVisual-Inertial Odometry'
|
|||
print row_format.format(*datasets_short)
|
||||
|
||||
print row_format.format(*vio['ate'])
|
||||
print row_format.format(*vio['time'])
|
||||
#print row_format.format(*vio['time'])
|
||||
print row_format.format(*vio['num_frames'])
|
||||
|
||||
print '\nVisual-Inertial Mapping'
|
||||
print row_format.format(*datasets_short)
|
||||
|
||||
print row_format.format(*mapping['ate'])
|
||||
print row_format.format(*mapping['time'])
|
||||
#print row_format.format(*mapping['time'])
|
||||
print row_format.format(*mapping['num_frames'])
|
||||
|
||||
|
||||
|
@ -77,6 +77,6 @@ print '\nPose-Graph optimization (Identity weights for all factors)'
|
|||
print row_format.format(*datasets_short)
|
||||
|
||||
print row_format.format(*pose_graph['ate'])
|
||||
print row_format.format(*pose_graph['time'])
|
||||
#print row_format.format(*pose_graph['time'])
|
||||
print row_format.format(*pose_graph['num_frames'])
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ void KeypointVioEstimator::initialize(const Eigen::Vector3d& bg,
|
|||
if (!data.get()) break;
|
||||
data->accel = calib.calib_accel_bias.getCalibrated(data->accel);
|
||||
data->gyro = calib.calib_gyro_bias.getCalibrated(data->gyro);
|
||||
std::cout << "Skipping IMU data.." << std::endl;
|
||||
// std::cout << "Skipping IMU data.." << std::endl;
|
||||
}
|
||||
|
||||
Eigen::Vector3d vel_w_i_init;
|
||||
|
|
Loading…
Reference in New Issue