Nothing is being detected in Tensorflow Object detection API

后端 未结 5 1271
耶瑟儿~
耶瑟儿~ 2020-12-28 20:51

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

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-28 21:13

    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

提交回复
热议问题