Closed MingtaoFu closed 4 years ago
https://github.com/mjq11302010044/RRPN_pytorch/blob/ec2b803c1da86d0f760ad20521cc6afc3b8026f9/maskrcnn_benchmark/structures/rboxlist_ops.py#L131
When I was testing the function rbbx_overlaps, I used two similar boxes
rbbx_overlaps
[[100, 100, 10, 5, 1]] and [[100, 100, 10, 5, 0]]
The IoU calculated was 1.0217502.
So why do you set it to 0.0 instead of 1.0?
@MingtaoFu Hi, there is no IoU > 1, the result is wrong. We recommand you to set height and width of a box larger than 16
https://github.com/mjq11302010044/RRPN_pytorch/blob/ec2b803c1da86d0f760ad20521cc6afc3b8026f9/maskrcnn_benchmark/structures/rboxlist_ops.py#L131
When I was testing the function
rbbx_overlaps
, I used two similar boxesThe IoU calculated was 1.0217502.
So why do you set it to 0.0 instead of 1.0?