I saved the two boxes that reported the error
Since the anchor file was too large, I saved it to kaggle, where I could download the data:
kaggle file
you can use this code to load it
with open('gt_box.txt','rb') as f:
gt=pickle.load(f)
with open('anchor.txt','rb') as f:
anchor=pickle.load(f)
From these data, I found that the target box is relatively small and has overlapping parts
I wonder if the problem is caused by the small and overlapping target boxes?
In the get_ground_truth of the RRPN_output section, this error occurred when calculating the iou.
Instructions To Reproduce the Issue:
I saved the two boxes that reported the error Since the anchor file was too large, I saved it to kaggle, where I could download the data: kaggle file
you can use this code to load it
From these data, I found that the target box is relatively small and has overlapping parts I wonder if the problem is caused by the small and overlapping target boxes?
Environment: