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 @suzhenghang / @jasjeetIM
have you made a comparison "RoIAlign vs. RoIPool" layer?
I want to replace the RoIPool layer in Faster R-CNN with the RoiAlign layer, hoping to get a more precise detection. Do you think that it is possible?
Hi @jasjeetIM ,
After adding the roi align layer,I replace the roi pooling layer in the trainval.prototxt like the following:
...................
top: "conv5_3"
}
layer {
name: "roi_align5"
type: "ROIAlign"
bottom: "conv5_3"
bottom: "rois"
top: "pool5"
roi_align_param {
pooled_w: 7
pooled_h: 7
spatial_scale: 0.0625 # 1/16
}
}
layer {
name: "fc6"
...................
Did it right? If so, did you compare the roi align layer and roi pooling layer in object detection? Could it increase the mAP?
Thanks in advance.
The text was updated successfully, but these errors were encountered: