Object Segmentation
카메라로 객체 분할.ipynb
- Running the cell codeCtrl + Enter
import subprocess
Import the subprocess module
# Object Segmentation with Raspberry Pi Camera
detect_command_segment = 'bash ~/ai_example/detect.sh cam_segment'
subprocess.call((detect_command_segment.split('\n')), shell=True)
Object Segmentation with Raspberry Pi Camera
Executed on Jetson Nano
# terminating the process
kill_command_segment = 'bash ~/ai_example/kill.sh camera'
subprocess.call((kill_command_segment.split('\n')), shell=True)
Terminating the process