You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jkjung-avt Thanks for your sample code, its very helpful !
I want to run yolo code as headless (without GUI) . Need to write as output videos/image . Please provide option to run yolo code to print console log instead of display in screen
I have jetson nano board without HDMI display connect . i want to run program and write it as output file
Any help appreciated!
cmd : python3 trt_yolo.py --image dog.jpg -m yolov3-tiny-416
The text was updated successfully, but these errors were encountered:
I just created a trt_yolo_mjpeg.py sample code. Please git pull the latest code from the repo and give it a try. For example, you could run trt_yolo_mjpeg.py headlessly like this:
Then check out the output in a web browser (http://<ip addr>:8080).
By default, the program listens to port 8080 and publishes MJPEG streams. The MJPEG image is refreshed roughly every 0.1 second. You could use "--mjpeg_port" command-line option to change the MJPEG server port.
I haven't found a good way to terminate the program. So currently you have to hit Ctrl-C a couple of times to force the program to stop. This should probably be improved in the future.
@jkjung-avt Thanks for your sample code, its very helpful !
I want to run yolo code as headless (without GUI) . Need to write as output videos/image . Please provide option to run yolo code to print console log instead of display in screen
I have jetson nano board without HDMI display connect . i want to run program and write it as output file
Any help appreciated!
cmd : python3 trt_yolo.py --image dog.jpg -m yolov3-tiny-416
The text was updated successfully, but these errors were encountered: