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
Hi, it is quite a nice implementation, I've read it and I got stuck in some points.
In reppoints_head.py, what is the usage of adding the "dcn_base_offset" at line 278, does it play a row of enlarging the offset range?
In the same file, i'm not sure if I am correct, I think the "pts_coordinate_preds_init" at line 424 after being applied the min_max is identical to "box_list" at line 466, except for the order. They both represent the bbox of the init points, why is it necessary to calculate the "box_list" again?
Thank you so much!
The text was updated successfully, but these errors were encountered:
Hi, it is quite a nice implementation, I've read it and I got stuck in some points.
In reppoints_head.py, what is the usage of adding the "dcn_base_offset" at line 278, does it play a row of enlarging the offset range?
In the same file, i'm not sure if I am correct, I think the "pts_coordinate_preds_init" at line 424 after being applied the min_max is identical to "box_list" at line 466, except for the order. They both represent the bbox of the init points, why is it necessary to calculate the "box_list" again?
Thank you so much!
In my opinion, dcn_base_offset corresponds to $p_n$ in equation (2) in Deformable Convolutional Networks. In fact, $p_n$ are the regular sampled locations in conventional Conv2d. dcn_offset = pts_out_init_grad_mul - dcn_base_offset computes the offsets $\Nabla p_n$.
Hi, it is quite a nice implementation, I've read it and I got stuck in some points.
Thank you so much!
The text was updated successfully, but these errors were encountered: