不理解 "TensorFlow Object Detection" 与 OpenCV GitHub Wiki

Don't understand "TensorFlow Object Detection" with OpenCV GitHub Wiki

我正在尝试使用 this wiki 通过 Python OpenCV 检测对象。但是我不明白我们应该使用的这行代码:

python tf_text_graph_faster_rcnn.py --input /path/to/model.pb --config /path/to/example.config --output /path/to/graph.pbtxt

我想使用MobileNet-SSD v3,所以我下载了this, as well as the tf_text_graph_ssd.py file and the ssdlite_mobilenet_v3_large_320x320_coco.config file

但是 none 个文件的扩展名是 *.pb 在 python 命令行中列出,并且 this file 已经有 *.pbtxt 输出扩展名,所以我不‘明白那条线必须做什么吗?

这可能是一个非常基本的问题,但我已经为此苦苦挣扎了一段时间,所以我想我可以问一下。

谢谢!

这个wiki asking you to download the .pb file which is a model from the Model Zoo. However the link is broken. Here is the the working link.

MobileNet-SSD v3在这里,您还可以在上面的link中找到其他MobileNet_SSD v3模型。

解压下载的文件后,您会找到文件frozen_inference_graph.pb。那就是你需要的模型文件。