Skip to content
Snippets Groups Projects
Commit 9573e9ba authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

processor::process() not available anymore, changed to sensor::process()

parent 9b5ab5b5
No related branches found
No related tags found
3 merge requests!39release after RAL,!38After 2nd RAL submission,!5Resolve "New processors workflow"
...@@ -488,7 +488,7 @@ class Process_Factor_IMU : public testing::Test ...@@ -488,7 +488,7 @@ class Process_Factor_IMU : public testing::Test
// Process IMU for the callback to take effect // Process IMU for the callback to take effect
data = Vector6s::Zero(); data = Vector6s::Zero();
capture_imu = make_shared<CaptureIMU>(t+dt, sensor_imu, data, sensor_imu->getNoiseCov()); capture_imu = make_shared<CaptureIMU>(t+dt, sensor_imu, data, sensor_imu->getNoiseCov());
processor_imu->process(capture_imu); sensor_imu->process(capture_imu);
KF_1 = problem->getLastKeyFrame(); KF_1 = problem->getLastKeyFrame();
C_1 = KF_1->getCaptureList().front(); // front is IMU C_1 = KF_1->getCaptureList().front(); // front is IMU
...@@ -660,7 +660,7 @@ class Process_Factor_IMU_ODO : public Process_Factor_IMU ...@@ -660,7 +660,7 @@ class Process_Factor_IMU_ODO : public Process_Factor_IMU
// Process ODO for the callback to take effect // Process ODO for the callback to take effect
data = Vector6s::Zero(); data = Vector6s::Zero();
capture_odo = make_shared<CaptureOdom3D>(t+dt, sensor_odo, data, sensor_odo->getNoiseCov()); capture_odo = make_shared<CaptureOdom3D>(t+dt, sensor_odo, data, sensor_odo->getNoiseCov());
processor_odo->process(capture_odo); sensor_odo->process(capture_odo);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment