We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
norm_anchor_center = self.anchor_center(pos_anchors) / stride pos_bbox_pred_distance = self.distribution_project(pos_bbox_pred) pos_decode_bbox_pred = distance2bbox(norm_anchor_center, pos_bbox_pred_distance) pos_decode_bbox_targets = pos_bbox_targets / stride target_ltrb = bbox2distance(norm_anchor_center, pos_decode_bbox_targets, self.reg_max).reshape(-1) score[pos_inds] = self.iou_target(pos_decode_bbox_pred.detach(), pos_decode_bbox_targets)
请问在计算iou的时候,为什么norm_anchor_center和pos_bbox_targets要除以stride呢?计算iou通常不都是在原图上计算吗?
norm_anchor_center
pos_bbox_targets
stride
The text was updated successfully, but these errors were encountered:
No branches or pull requests
请问在计算iou的时候,为什么
norm_anchor_center
和pos_bbox_targets
要除以stride
呢?计算iou通常不都是在原图上计算吗?The text was updated successfully, but these errors were encountered: