-
Notifications
You must be signed in to change notification settings - Fork 543
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
how to generate proposal? #10
Comments
Hi, then you need to follow the 4-step training in paper to train a region proposal network and a R-FCN network, and to share features between them. |
@daijifeng001 (note: I am referring to detection and not training. I want to test my own images but I do not have their proposal mat files) |
The demo does not provide proposal generation, but it is very fast in inference and would not be a trouble for computation. |
Can you try the dropbox link? From: hengck23 [mailto:notifications@github.com] @daijifeng001 https://github.com/daijifeng001 (note: I am referring to detection and not training. I want to test my own images but I do not have their proposal mat files) — |
@daijifeng001 If these models already share features for RPN and frcnn, then I can write the code for end-to-end detection and share it here. Currently I am convert your script_rfcn_demo.m to C++ and run the demo in windows C++ caffe only. I convert the proposal mat files to text file so that it can be read by c++. Let try to write some code using demo model to make proposals and get back to you later. |
Yes. From: hengck23 [mailto:notifications@github.com] @daijifeng001 https://github.com/daijifeng001 If these models already share features for RPN and frcnn, then I can write the code for end-to-end detection and share it here. Currently I am convert your script_rfcn_demo.m to C++ and run the demo in windows C++ caffe only. I convert the proposal mat files to text file so that it can be read by c++. Let try to write some code using demo model to make proposals and get back to you later. — |
Should I using the same way like in faster-rcnn to get proposals in a different function using a different caffe prototxt define network and model? Or, just using the current model, but how? |
I was running the demo code:
https://github.com/daijifeng001/R-FCN/blob/master/experiments/script_rfcn_demo.m
the proposal are loaded from file:
proposals = load(fullfile(demo_dir, [im_names{j}, '_boxes.mat']));
How can I run the detection of one image end-to-end?
Thank you very much
The text was updated successfully, but these errors were encountered: