R/utils.R

Defines functions annotate_image

#' Annotate an image with object detection data from a YOLO model
#' 
#' @param image: array representing the image used for detection
#' @param detection: `DetectionResult` result from SKIL on the same image
#' 
#' @export
annotate_image <- function(image, detection) {
  skilr$utils$yolo$annotate_image(image, detection)
}
SkymindIO/skilr documentation built on May 26, 2019, 1:42 a.m.