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
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 text was updated successfully, but these errors were encountered:
The RoiRingPoolFunction is adopted from another eccv paper, you can read this paper https://arxiv.org/abs/1609.04331 for better understanding.
Sorry, something went wrong.
No branches or pull requests
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 text was updated successfully, but these errors were encountered: