
Detects objects in each Image with a HuggingFace or Ultralytics checkpoint chosen at load time from the repo contents and projects the detections onto the connected output shape: boxes, geometry, classes, a count, or an overlay. Filtered by confidence.
Tracked detection from a video file with a live overlay of tracked boxes.
Crop each detected object out of an HTTP frame source for a downstream per-object stage.
[BoundingBox] is box geometry plus class, [Rectangle<Double>] is box geometry only, [DetectedClass] is class id plus confidence only, UInt64 is the detection count, and Image is the source frame with boxes drawn. These backends are object-detection only, so no instance-mask shape is offered.model repo contents: a `.pt` file selects the Ultralytics path, then a `.onnx` file selects the ONNX runtime path, otherwise use_pipeline toggles between the high-level detection pipeline and the eager processor+model path.model and use_pipeline are hot-swappable at runtime and trigger a model reload (and a GPU memory reclaim on CUDA) on the next call, producing a one-call latency spike.threshold is the base confidence floor; class_thresholds overrides it per class id, and object_classes acts as an allow-list where an empty list keeps every class. All key off the checkpoint's own class id space.model is swapped for a checkpoint with a different class order.device is read once at startup and is not mutable; a value starting with `cuda` silently falls back to CPU when CUDA is unavailable.Automated release