Making an RCNN object detector less picky?

조회 수: 5 (최근 30일)
Doug
Doug 2019년 6월 10일
댓글: Doug 2019년 6월 19일
I'm attempting to detect objects in images using an RCNN object detector, closely following the stop sign example. The code works, but I need it to be less picky. That is, I want possible matches with lower scores to be included in the output. I can tolerate many more false positives (incorrectly identifying some part of the image as an object) than false negatives (failing to identify an object). Is there a way to specify a lower score threshold for possible matches?
  댓글 수: 2
Shivam Sardana
Shivam Sardana 2019년 6월 18일
Following the stop sign example, after the line,
[bboxes,score,label] = detect(rcnn,testImage,'MiniBatchSize',128)
, you get score of detections. To annotate the data with less detection rate, set value of score according to your requirements.
Doug
Doug 2019년 6월 19일
Every object detected by the "detect" command comes with a bbox and score (the outputs). So far, I'm keeping all of them, regardless of their scores. My question is how to get "detect" to output even more possible objects, with even lower scores. Is there an input that allows me to set the minimum score?

댓글을 달려면 로그인하십시오.

답변 (0개)

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by