Packages

A library for object detection and seamless YOLO model integration in Elixir

Current section

Files

Jump to
yolo lib yolo.ex
Raw

lib/yolo.ex

defmodule YOLO do
defdelegate load(options), to: YOLO.Models
defdelegate detect(model, image), to: YOLO.Models
defdelegate detect(model, image, options), to: YOLO.Models
defdelegate to_detected_objects(bboxes, model_classes), to: YOLO.Utils
end