Hand Gesture Recognition

    1. 카메라로 손 포즈 추정.ipynb

  • Running the cell code
    Ctrl + Enter
import subprocess
  • Import the subprocess module

# Hand gesture detection with Raspberry Pi Camera
detect_command_pose = 'bash ~/ai_example/detect.sh cam_pose'
subprocess.call((detect_command_pose.split('\n')), shell=True)
  • Hand Gesture Detection with Raspberry Pi Camera

  • Executed on Jetson Nano

# terminating the process
kill_command_pose = 'bash ~/ai_example/kill.sh camera'
subprocess.call((kill_command_pose.split('\n')), shell=True)
  • Terminating the process