mpeven / ntu_rgb

Code to use the nturgb+d dataset for action recognition
MIT License
15 stars 9 forks source link

How to draw a Skeleton #2

Open robinfays12 opened 4 years ago

robinfays12 commented 4 years ago

Hello,

I'm new on this field and I would like to improve my skills. So my problem is : I downloaded the NTU RGB dataset (only the Skeleton part) and I would like to draw one skeleton in Python. Is it possible to help me ?

TY,

Robin

mpeven commented 4 years ago

You could do this is by plotting each point in 3D space.

You could modify the OpenGL code I have available, but an easier way would just be to do it in matplotlib.

Here are the docs that would show you how to do this: https://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html

robinfays12 commented 4 years ago

Thank you very much !