Closed davideCremona closed 4 years ago
Hi @davideCremona, Probably nms_v2, but if it doesn't work, analyze the model structure. About Split Model Since ssd mobilenet of realtime object detection split by non-maximum suppression, an error will occur if this structure is different.
You can also use:
split_model: False
this setting is slow but maybe work.
Setting split_model: False works, I'm getting around 60fps on nvidia RTX 2080, but visualizing no detections in realtime nor in the saved video, probably because it does not contain any speed_20, speed_10, speed_30 or stop.
Can you please share your test video? I will do a realtime object detection on that to see if everything works as expected. Thank you again, Davide.
I don't have a sample video as I only use it for real-time detection using a usb camera.
Please try to see my youtube video with a usb camera.
Realtime Object Detection on TX2
cd ~/github/realtime_object_detection
python run_stream.py
or use train_ssd_mobilenet/roadsign_data/PascalVOC/JPEGImages data.
cp -r ~/github/train_ssd_mobilenet/roadsign_data/PascalVOC/JPEGImages ~/github/realtime_object_detection/images
cd ~/github/realtime_object_detection
python run_image.py
Hi, I've used some code of your realtime object detection repository and it all works perfectly. Thanks for the support
Hi, I'm experimenting with your repository and I've started with following the tutorial. I've successfully trained an ssd mobilenet model with the steps in readme.md, exported the frozen graph but now I want to test it on a video. To test the model I'm using your linked repository for realtime object detection. I'm confused with the nms_version. What version should I use? I'm copying the .yml file for clarity:
Thank you in advance, Davide.