trainYOLOv​2ObjectDet​ector function details.

3 views (last 30 days)
How to adjust the probabilty and the iou thresholds in trainYOLOv2ObjectDetector function ?

Accepted Answer

Divya Gaddipati
Divya Gaddipati on 17 Jul 2019
You can refer to the following link on how to use the trainYOLOv2ObjectDetector function:
Here, you can find the function detect being used after training the network for obtaining the locations of the detected objects. The Name-Value parameter called “SelectStrongest” in the detect function should be set to “True”, which will allow to return the strongest bounding box.
Instead, if you want to set custom probability scores and IOU thresholds, you can use selectStrongestBboxMulticlass function in place of detect.
For more information on how to use the functions detect and selectStrongestBboxMulticlass, you can refer to the following links:

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!