robotology / assistive-rehab

Assistive and Rehabilitative Robotics
https://robotology.github.io/assistive-rehab/doc/mkdocs/site
BSD 3-Clause "New" or "Revised" License
20 stars 11 forks source link

Test the TUG metrics accuracy with and without human planes projection #322

Closed mfussi66 closed 1 year ago

mfussi66 commented 1 year ago

Now that the transformation of the skeleton keypoints and the projection on the human planes (sagittal, coronal, transverse) are implemented, it might be useful to test if the latter is actually an improvement. The projection of, i.e. the step length on the sagittal plane requires accurate placement of the shoulders, and the Realsense depth noise might corrupt this information. This issue will be a collector of tests on the subject, in order to draw conclusions and evaluate possible strategies.

mfussi66 commented 1 year ago

Here is a comparison between the measurements taken by projecting the steps on the human planes, and a simple euclidean between the two ankles:

euclidean distance

plot_motion_norm

https://user-images.githubusercontent.com/38140169/201717700-578ed3e3-3ec3-4e32-af52-882beb629d34.mp4

We can see that the information is of course fused together, so if the ankles are sufficiently far apart, their distance is significant even if no step is taken. However, the distance is invariant wrt the person orientation, and the steps are measured fairly accurately (see the peaks from 35sec).

Projection on planes

plot_motion_abs

https://user-images.githubusercontent.com/38140169/201718742-d8a8b64c-f34f-4007-adb5-2c7206c92556.mp4

In this case we have accurate results only when the person faces the robot, since OpenPose and the skeletonRetriever struggle with occluded keypoints.

I think we could use the first solution to run the demos, and later verify with the other parties involved if the metrics can be considered useful. In the future, a kalman-based estimator could be used to improve the keypoints tracking.

pattacini commented 1 year ago

Nice comparison 👍🏻

I think we could use the first solution to run the demos, and later verify with the other parties involved if the metrics can be considered useful. In the future, a kalman-based estimator could be used to improve the keypoints tracking.

I agree 👍🏻

mfussi66 commented 1 year ago

Related PR to apply the first solution: