I\'m trying to implement Tensorflow object detection API sample. I am following sentdex videos for getting started. The sample code runs perfectly, it also shows the images
The problem is from the model: 'ssd_mobilenet_v1_coco_2017_11_08'
Solution: change to an differrent version 'ssd_mobilenet_v1_coco_11_06_2017' (this model type is the fastest one, change to other model types will make it slower and not the thing that you want)
Just change 1 line of code:
# What model to download.
MODEL_NAME = 'ssd_mobilenet_v1_coco_11_06_2017'
When I use your code, nothing is shown but when I replace it with my previous experiment model 'ssd_mobilenet_v1_coco_11_06_2017' it works fine