pytorch_MELM icon indicating copy to clipboard operation
pytorch_MELM copied to clipboard

RoIRingPoolFunction

Open b03505036 opened this issue 4 years ago • 1 comments

why are you using RoIRingPoolFunction instead of RoIAlign?

And also in the lib/nets/network.py pool5_roi = self._roi_ring_pool_layer(net_conv, rois, 0., 1.0) pool5_context = self._roi_ring_pool_layer(net_conv, rois, 1.0, 1.8) pool5_frame = self._roi_ring_pool_layer(net_conv, rois, scale_inner = 1.0 / 1.8, scale_outer = 1.0)

what is different between this three parts of roi ?

Thank you!

b03505036 avatar Apr 30 '20 12:04 b03505036

The RoiRingPoolFunction is adopted from another eccv paper, you can read this paper https://arxiv.org/abs/1609.04331 for better understanding.

vasgaowei avatar Jun 02 '20 15:06 vasgaowei