keras_frcnn
keras_frcnn copied to clipboard
background detection in roi_helpers.py
Hi,
in roi_helpers.py
, you use the following code to neglect some region proposals and detect background:
neglect region proposals:
if best_iou < C.classifier_min_overlap:
continue
detect background:
if C.classifier_min_overlap <= best_iou < C.classifier_max_overlap:
cls_name = 'bg'
but I think these two should be interchanged since for a region proposal, the less IoU with GT boxes, the higher probability it would be background.
Please let me know if I am wrong. Thank you!
@chiayuhsu Did you solve this problem?