Skip to content
New issue

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

did VotePooling implement right? #14

Open
world4jason opened this issue Jul 29, 2019 · 2 comments
Open

did VotePooling implement right? #14

world4jason opened this issue Jul 29, 2019 · 2 comments

Comments

@world4jason
Copy link

world4jason commented Jul 29, 2019

original paper set k = 7
k=3 is for visualization purpose
so a ROI block crop(ROI_ALIGN) from score_map might have the following dimension
[ 7, 7, n_classes ]

but the code seems weird here?
should the code change from
pooled.append(tf.image.crop_and_resize( score_maps[i], level_boxes, box_indices, [self.pool_shape * self.k, self.pool_shape * self.k], method="bilinear"))

to something like this?

pooled.append(tf.image.crop_and_resize( score_maps[i], level_boxes, box_indices, [ self.k, self.k], method="bilinear"))

@world4jason
Copy link
Author

world4jason commented Jul 29, 2019

I'm really confused that why here is a K and also a pool_shape?

btw, in light-head rcnn also take k=7 as an example when they plot the comparison picture in figure 2
https://arxiv.org/pdf/1711.07264.pdf

@kevinn888
Copy link

kevinn888 commented Apr 18, 2020

i also got an error in votePooling when i try to run this code, did you already know the answer..??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants