SSD_mobileNet displaying N/A 99%
Good day guys. I just trained SSD_mobileNet on two classes. I used LabelImg to draw bounding box and label my dataset. After training I froze my .pbtxt file to get .pb file. I used tensorflow object_detection.py code with openCV. During my testing on my laptop, I got the a bounding box with N/A 99% on it and it did not recognise any on the two classes I trained with. I dont know what to do. Please help me guys.
Hey, assuming you used the following code to load your network:
net = cv.dnn.readNetFromTensorflow(prototxt, weights)
what did you use for the 'prototxt' file?
I also retrained MobilenetSSD, using the Tensorflow Object Detection API, and then used the prototxt file from here https://github.com/opencv/opencv_extr... modified to the number of classes of my retrained network. However, my output is very bad with boxes all over the place. My theory Is that there is a mismatch between the structure of config file used in the Object Detection API and the structure used by OpenCV dnn.
Any suggestions?