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
We caculate Correspondence by this fomula:
x1 = x1_map * 2 + 1,
y1 = y1_map * 2 + 1,
x2 = x1_map * 2 + 1 + 12,
y2 = y2_map * 2 + 1 + 12.
First, how do you derive the equations here? Second, the axis of Red box in original image is (1, 1, 13, 13), which Correspond to (0, 0) in feature map. How about (0,0,12,12)? That is the first convolutional region, which should map to (0,0) in the output feature map? Could you clarify these? Thanks.
The text was updated successfully, but these errors were encountered:
I think it's my fault. You can remove the "+1". But it's ok if calculate the same formulation in both training and evaluating process. And also the 1 pixel error can be fixed by bounding box regression process.
We caculate Correspondence by this fomula:
x1 = x1_map * 2 + 1,
y1 = y1_map * 2 + 1,
x2 = x1_map * 2 + 1 + 12,
y2 = y2_map * 2 + 1 + 12.
First, how do you derive the equations here? Second, the axis of Red box in original image is (1, 1, 13, 13), which Correspond to (0, 0) in feature map. How about (0,0,12,12)? That is the first convolutional region, which should map to (0,0) in the output feature map? Could you clarify these? Thanks.
The text was updated successfully, but these errors were encountered: