Object Detection

  • 3-1. 카메라로 객체 검출.ipynb

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

# Object Recognition with Raspberry Pi Camera
detect_command_object = 'bash ~/ai_example/detect.sh cam_object'
subprocess.call((detect_command_object.split('\n')), shell=True)
  • Object Recognition with Raspberry Pi Camera

  • Executed on Jetson Nano

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