Description Usage Arguments Value
View source: R/yolo3_predict.R
Transforms 'Yolo3' predictions into valid boxes.
1 2 3 4 5 6 7 8 9 10 11 |
preds |
|
anchors |
Prediction anchors. For exact format check |
labels |
Character vector containing class labels. For example |
obj_threshold |
Minimum objectness score. Must be in range '[0, 1]'. All boxes with objectness score less than 'obj_threshold' will be filtered out. |
nms |
Logical. Should 'Non-Maximum-Suppression' be applied. |
nms_threshold |
'Non-Maximum-Suppression' threshold. |
correct_hw |
Logical. Should height/width rescaling of bounding boxes be applied. If 'TRUE' 'xmin/xmax' coordinates are multiplied by 'image_w' and 'ymin/ymax' coordinates are multiplied by 'image_h'. |
image_h |
Rescaling factor for 'ymin/ymax' box coordinates. |
image_w |
Rescaling factor for 'xmin/xmax' box coordinates. |
List of 'data.frames' containing bounding box coordinates and objectness/class scores.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.