ovml_yolo_detect.Rd
Detect objects in image using a YOLO network
ovml_yolo_detect(net, image_file, conf = 0.6, nms_conf = 0.4)
yolo: as returned by ovml_yolo()
character: path to one or more image files
scalar: confidence level
scalar: non-max suppression confidence level
A data.frame with columns "image_number", "class", "score", "xmin", "xmax", "ymin", "ymax"
if (FALSE) {
dn <- ovml_yolo()
img <- ovml_example_image()
res <- ovml_yolo_detect(dn, img)
ovml_ggplot(img, res)
}