You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey, i am confused about the x_m-x_n and y_m-y_n when they are equal to zero under special condition using faster rcnn object detector, because center coordinates may be same and results to log(0). How do solve this problem?
The text was updated successfully, but these errors were encountered:
@Jordan-5i You are absolutely right, about the corner case of two bounding boxes with the same center coordinates.
To cover that explicitly in equation 6, one should replace |x_m-x_n| by min(|x_m-x_n|, eps) for some small constant eps>0.
In our code we do that with eps=0.001*w, and analogous computation for the y coordinates.
Here is the part of the code where we address this with torch.clamp (and also provide for the degenerate case of w=0, or h=0).
hey, i am confused about the x_m-x_n and y_m-y_n when they are equal to zero under special condition using faster rcnn object detector, because center coordinates may be same and results to log(0). How do solve this problem?
The text was updated successfully, but these errors were encountered: