-
Notifications
You must be signed in to change notification settings - Fork 4
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
About extracting annotated and candidates fc7-layer features #7
Comments
Hi z-kun, In Fast-RCNN you would have to provide the region of interests yourself, as there is no RPN module like in Faster-RCNN to generate the regions of interest. For example, in this project, we use selective search to generate the candidate regions. To extract the features of annotated bounding boxes, instead of using the candidate regions provided by selective search, you can provide as input the annotated bounding boxes. Thus, you can use exactly the same network to extract the appearance features. I hope I got your question right ! |
@jpeyre Indeed, I have extracted the candidate features by faster rcnn with RPN. |
Ah I see your problem. I am not aware of a simple way to do this... I think you would have to manually modify Faster-RCNN code so that it extract features for your own proposals (the annotated boxes) instead of using the ROIs from RPN. In your Faster-RCNN implementation, check how the rois are given to roi_pooling layer and see whether you can modify the code to give your own proposals as done in Fast-RCNN. |
@jpeyre |
@jpeyre |
Well I haven't studied this question, but intuitively I would say that the feature extracted "on the fly" of detection, and a feature re-extracted for the same box but after box regression should be quite similar... but once again, I am not a specialist in this question :) Anyway, it's something you could definitely try ! |
Hi jpeyre,
According to your paper, intuitively, we can extract fc7 features of all regions of interest (ROIs) in fast rcnn and regard them as the candidates features.
But, if we want to extract features of annotated bounding boxes, we can not use the NET with the same parameters as which we use to extract the candidates feature ,because it will generate ROIs in pool5 layer before fc7 layer if annotated bounding boxes are inputted to fast rcnn.
So how to extract ANNOTATED FEATURE in fc7 layer of fast rcnn?
I am looking forward to your reply. Thanks!
The text was updated successfully, but these errors were encountered: