
Runs a bound RF-DETR checkpoint locally over each Image, building one per-detection record and projecting it onto the connected output shape: boxes, geometry, labels, a count, or an overlay, filtered by confidence.
Fine-tuned camera deployment with tracking and a live overlay.
Crop each detected object out of a still image for a downstream per-object stage.
variant must match the trained backbone; a mismatch fails checkpoint loading with a state-dict error at startup.[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. RF-DETR is a set predictor that de-duplicates internally, so no NMS runs. This is a box-only detector, so no instance-mask shape is offered.threshold is the base confidence floor, class_thresholds overrides it per class id, and object_classes is an allow-list applied after inference (an empty list keeps every class), so the model still runs the full forward over each frame regardless of the filter.variant, and all configuration keys are captured once at startup; replacing any of them requires a redeploy.device starting with `cuda` silently falls back to CPU when CUDA is unavailable.Automated release