Closed fengxiuyaun closed 6 years ago
还有就是,我还是不能理解IOU lable怎么会分布到[-1,1]。您说预测得到的iou是预测到的bounding box 与真值框的IOU,怎么会有负数呢?就如完全不匹配顶多是IOU=0呀?
谢谢回复哈,但我没找到从什么地方体现出有类别相关呢?
这应该算是专有名词吧,我翻译的也不准,如果你在搜索引擎里输入class-aware detector or class-agnostic detector,应该能获得非常详尽的解释:)
On Class-aware IoU predictors.
In short, assuming we have 80 classes in our dataset, the output of the IoU prediction branch is a vector iou
of length 80 for each bounding box. After determining its class label c
(based on the classification branch), we use iou[c]
as the predicted IoU.
BTW, the bounding box regression branch in Faster R-CNN/Mask R-CNN is also "class-aware".
oh, thank you very much
Closing this thread. Feel free to reopen it if you have any further questions.
你好,非常感谢您的分享-IOUnet,但是我有几处不了解的地方。