DetectionTeamUCAS / FPN_Tensorflow

This is a tensorflow re-implementation of Feature Pyramid Networks for Object Detection.
https://github.com/DetectionTeamUCAS/FPN_Tensorflow
MIT License
347 stars 132 forks source link

关于最终检测框 #107

Closed ttianwang closed 4 years ago

ttianwang commented 4 years ago

你好,我看到最后的检测框,您是将所有得到的检测框都作为每一类的检测框,但不应该是,检测框对应的得分最高的类别才是该检测框对应的类别吗

yangxue0827 commented 4 years ago

代码会对每个proposal都预测每一类的置信分以及对应的预测框,最后通过卡阈值过滤。 @ttianwang