标签: tensorflow anchor object-detection tf-lite
我用mobilenet_v2_ssd训练了目标检测模型,使用tflite_convert将其转换为float tflite和unit8 tfilte,并使用Netron工具将模型可视化。
我发现最终的“ TFLite_Detection_PostProcess”可以提取输入参数锚点。
它的格式是 [ [ 4, 4, 15 15 ], [ 4, 4, 22 44 ], ...]
您如何理解锚点?
谢谢!
答案 0 :(得分:0)
从code中检查出来的是ymin, xmin, ymax, xmax。
ymin, xmin, ymax, xmax
您可能还会发现this thread有用。