Skip to content
Snippets Groups Projects

human tracker skeleton

Merged Marius Baden requested to merge feature/human-tracker into dev
2 files
+ 16
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 14
0
#include "types.h"
namespace armarx::navigation::human
{
core::Pose2D
Human::estimateAt(DateTime& time) const
{
double dt = (time - detectionTime).toSecondsDouble();
core::Pose2D estimation{pose};
estimation.translation() += linearVelocity * dt;
return estimation;
}
} // namespace armarx::navigation::human
Loading