
Takes a scene Image and a description String, runs the NVIDIA Eagle LocateAnything grounding VLM, and emits one located instance per match in pixel coordinates; the sink picks the arm (BoundingBox, Rectangle, labelled box, count, or overlay).
Open-vocabulary detection on an uploaded image: name the categories to find as the description and publish the labelled boxes as JSON.
Phrase grounding on a live HTTP feed: drive the description from an expression node so the located phrase can be templated per deployment, and crop each grounded region downstream.
Image and the description String arrive together; the description conditions what is located. An empty description falls back to a generic locate-every-object prompt so the component always answers.BoundingBox boxes carrying a class id and confidence, bare Rectangle geometry, boxes paired with the grounded text label (`{bounds, label}` -- the only arm where the open-vocabulary text survives), a UInt64 instance count, or an Image overlay with the boxes drawn. prompt_to_class_id maps grounded labels to class ids for the BoundingBox arm; unmapped labels default to class id `0`.Automated release