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
Specifically I am looking for a way to get bounding boxes for the proposed region and their classification.
The text was updated successfully, but these errors were encountered:
I join a question.
1 Is there enough will get exactly the same way as an array as here?
caffe-fast-rcnn/examples/cpp_classification/classification.cpp
Line 164 in 0dcd397
Blob<float>* output_layer = net_->output_blobs()[0]; const float* begin = output_layer->cpu_data(); const float* end = begin + output_layer->channels(); return std::vector<float>(begin, end);
In which: { class_score, x, y, width, height, class_score, x, y, width, height, ... }
2 Or should we use like this?
const vector<Blob<float>*>& output_blobs = net_->ForwardPrefilled(); //LOG(INFO) << "End"; for (int i = 0; i < output_blobs.size(); ++i) {
Where for each output_blobs[i] contains different layers: cls_score, bbox_pred, cls_prob ...
output_blobs[i]
Sorry, something went wrong.
No branches or pull requests
Specifically I am looking for a way to get bounding boxes for the proposed region and their classification.
The text was updated successfully, but these errors were encountered: