smart-edge-open / edgeapps

Applications that can be onboarded to an Intel® Smart Edge Open edge node.
Apache License 2.0
51 stars 73 forks source link

Understanding a command in openvino.go(OPENVINO Network Edge) #13

Closed JeevanCK7 closed 4 years ago

JeevanCK7 commented 4 years ago

can someone please explain what this command does exactly? taskset -c 8 /root/omz_demos_build/intel64/Release/object_detection_demo_ssd_async -d CPU -i rtp://127.0.0.1:5000?overrun_nonfatal=1 -m pedestrian-detection-adas-0002/FP32/pedestrian-detection-adas-0002.xml

This is executed through exec.Command in openvino.go file of consumer

amr-mokhtar commented 4 years ago

This command executes the OpenVINO object detection program. The program consumes the live video stream received inside the openvino-consumer container at port 5000. The program is being set to CPU 8 so that it does not compete with any other processes on the same CPU.

amr-mokhtar commented 4 years ago

Closing this issue due to inactivity..