Hi All,I’m new to DeepLearning and now I have one task to choose a Deeplearning model running on TX2 which could conduct real-time detection.
I had tested the yolo v2 based on darknet and the result was only 5FPS, and tiny yolo had better performance with 15FPS, but presently I need one model whose detection speed could reach as much as 25FPS.
I have been told that mobilenet based on tensorflow had real-time detection speed on TX2.Does anyone here has worked with in this field? And what’s your model and platform? Someone referred the mobilenet, shufflenet resnet and tensorflow caffe to me. Have you ever tried them and happened to know more about them? Or do you have better advice and recommondations?
we are also looking for a fast object detector to run on the Jetson. We are trying to optimise yolov2 with TensorRT but we did not succeed yet. We will probably try with different networks soon.
How did you get 5fps? Did you run the directly the code from darknet?
I am curious to know any development on this.
Hi!
I’m working on running yolo on Tx2 Dev kit. I have installed all of requirements for yolo, OpenCV, CUDA, Cudnn.
I’ve tested if the onboard camera’s working via gstreamer : gst-launch-1.0 nvarguscamerasrc ! nvvidconv ! xvimagesink
It works properly.
Then, I tried to run yolo by your code ./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights “nvcamerasrc ! video/x-raw(memory:NVMM), width=(int)1280, height=(int)720,format=(string)I420, framerate=(fraction)30/1 ! nvvidconv flip-method=0 ! video/x-raw, format=(string)BGRx ! videoconvert ! video/x-raw, format=(string)BGR ! appsink”
The result is “Video-stream stopped!”
How could i track the issue?
Thank