How to extract the details of a bounding box detected in a RCNN trained network?
1 view (last 30 days)
Show older comments
Philip Kanjirathingal Kurian
on 26 Sep 2019
Answered: Raunak Gupta
on 30 Sep 2019
I am trying to detect arrow symbol from an image which is captured through a webcam. I am using RCNN to detect the arrows. I could detect the arrow from the image using a trained RCNN Network. The bounding box appears around the arrow.
I want to check using the details of bounding box, if a bounding box has been detected. My idea is to call a subfunction, if a bounding box has been detected in the image. How can i extract the details of bouding box and use it in my code for the above purpose.
0 Comments
Accepted Answer
Raunak Gupta
on 30 Sep 2019
Hi,
After training the RCNN Detector you may getting a trainRCNNObjectDetector object which contains information about the detector. You may apply detect to the image for which object detection is required and get the bounding box information in terms of rectangle object. Also, the accuracy and labels are returned with the detect command.
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!