Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

References for 6MWT and 10MWT #69

Closed
pattacini opened this issue May 11, 2018 · 1 comment
Closed

References for 6MWT and 10MWT #69

pattacini opened this issue May 11, 2018 · 1 comment
Assignees
Labels
📖 references Useful references to peruse

Comments

@pattacini
Copy link
Member

pattacini commented May 11, 2018

https://github.com/spencer-project/spencer_people_tracking.

@pattacini pattacini added the 🚀 enhancement New feature or request label May 11, 2018
@pattacini pattacini changed the title Implement 6-min and 10-m walk Implement 6-min and 10-min walk Oct 19, 2018
@pattacini pattacini added 📖 references Useful references to peruse and removed 🚀 enhancement New feature or request labels Feb 27, 2019
@pattacini pattacini changed the title Implement 6-min and 10-min walk References for 6MWT and 10MWT Feb 27, 2019
@vvasco
Copy link

vvasco commented Mar 25, 2019

SPENCER was a EU project (finished in 2016) with the aim of developing algorithms for service robots that can guide groups of people through highly dynamic and crowded pedestrian environments.

The people tracker developed within this project includes the following steps:

  • motion prediction: for each detected person, motion is predicted using an Extended Kalman filter. To deal with dynamic environments, a bank of first and second order motion models is used and combined in an Interacting Multiple Models filter (IMM);
  • data association: new incoming detections are associated with existing tracks using the Nearest-Neighbor (NN), which selects the track minimizing the distance between detection and prediction;

A track initiation logic is also included, which confirms a set of detections to be a track if:

  • its speed is restricted to a pre-defined interval [v_min,v_max]
  • the Euclidean distance between the current detection and the prediction of the track candidate is below a threshold.

This video shows the result of the tracking on a mobile platform in a real crowded environment (airport). The scenario is rather complex, extremely dynamic and the tracker seems to work well (note: detections are obtained with both RGB-D sensors and 2D laser range sensors), with low CPU consumption (less than 10% of a single i7 Core).

We might rely on a similar strategy for dealing with distractors (in the case of 6MWT, people not relevant for the test can walk throughout the corridor). From our previous analysis (#171), data appear consistent to apply a NN strategy.

Resource

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📖 references Useful references to peruse
Projects
None yet
Development

No branches or pull requests

2 participants