Skip to content
Snippets Groups Projects
Commit f9dd9448 authored by Tobias Gröger's avatar Tobias Gröger
Browse files

Kalman test check angular velocity

parent 40ee6905
No related branches found
No related tags found
3 merge requests!68Add human tracking,!53Draft: Implement basic version of kalman filter for human tracking,!28Draft: Dev -> Main
This commit is part of merge request !53. Comments created here will be created in the context of that merge request.
......@@ -78,7 +78,8 @@ namespace armarx::navigation::components::dynamic_scene_provider
"position differs too much from last step: " << (last_pos - pos).norm());
SystemModelT::ControlT control;
control.angular_velocity.coeffs() << (last_angle - angle) / dt;
//TODO (SALt): check angular velocity (>pi overflow)
control.angular_velocity.coeffs() << c; //(last_angle - angle) / dt;
control.euclidean_velocity << (pos - last_pos) / dt;
const SystemModelT::StateT propagated = SystemModelT::propagationFunction(
......
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