-
Notifications
You must be signed in to change notification settings - Fork 251
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
Extract same number of regions. #14
Comments
Did you solved the problem? I also want to determine the number of bounding box. |
|
Thanks for replying. I am reading the paper R-CNN, In this paper, the author said they extract 2000 region from every picture. They also using selective region method to extract region. So I feel confused, I thought the selective region method can control the number of bounding box. |
The selective search algorithm does not permit exact control of boxes (read the original selective search paper) nor any variants of selective search. The R-CNN authors first do non-maxima suppression and then simply just pick top 2000 boxes. This leads to boxes which are non-overlapping and boxes are spread around the whole image minimizing the chance to missed an object. |
em, I will continue to understand this paper, I not yet totally understand that. Thank you very much. |
Can I extract exactly 20 bounding boxes for every image? I changed the scale parameter but the number of bounding boxes differs between different images.
The text was updated successfully, but these errors were encountered: