Making an RCNN object detector less picky?
古いコメントを表示
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
2019 年 6 月 18 日
[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
2019 年 6 月 19 日
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Object Detection についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!