pytorch_MELM
pytorch_MELM copied to clipboard
RoIRingPoolFunction
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!
The RoiRingPoolFunction is adopted from another eccv paper, you can read this paper https://arxiv.org/abs/1609.04331 for better understanding.