Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 987 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 987 Bytes

American Sign Language Computer Recognition Research, APR 2020

hand_plotter.py

Overview

This program is capable of plotting a hand figure in 3D based on
coordinates provided from a CSV file in the Mendely dataset of
recorded American Sign Language gestures.

Screen Shot 2022-09-27 at 10 19 04 PM

Command line args

$ handfile.csv plot_mode

handfile.csv = the file containing the coordinates you would like to plot

plot_mode = * (optional, set to 'line' by default)
            * 'scatter' - plot the hand using a scatter plot, showing the joints as points 
            * 'line' - plot the connections between the joints as lines

Examples: $ python3 hand_plotter.py Work_Right.csv scatter
          $ python3 hand_plotter.py Work_Right.csv line
          $ python3 hand_plotter.py Work_Right.csv