
Embeds example regions from the bound reference at refer_boxes into a YOLOE visual prompt, then finds matching objects in each target Image. The consumer picks one arm: boxes, rectangles, classes, masks with class, bare masks, count, or annotated frame.
A video stream is searched for the prompted object each frame and the boxes feed a tracker that assigns stable identities across frames.
A live camera stream is searched for the example object and the detections are drawn over the frame for inspection.
A file image is searched and each matched region is cropped out for downstream use.
[Segmentation] and [Mask] arms also require the bound checkpoint to produce instance masks.model binding must resolve to exactly one YOLOE segmentation weights file; zero or more than one aborts startup. Prompt-free weights lack the visual-prompt branch and will not work.reference binding must resolve to exactly one image file; the visual prompt is embedded from it once at startup.refer_boxes is a list of native BoundingBox regions in the reference image; each box's rectangle marks one example region and its class id is the visual-prompt class. An empty list aborts startup.refer_boxes box, so downstream rules index the same id space the prompt defined.threshold defaults low because cross-image visual prompting scores below text prompting; raise it to suppress weak matches. iou bounds NMS on every arm.Automated release