cursor_locate
Locate a target on an image by iteratively adjusting a cursor via visual feedback and relative offset estimates, converging on the target center.
Instructions
移动光标 + 视觉反馈循环定位:渲染光标位置,模型输出目标相对光标的偏移(dx/dy),逐步逼近目标中心。对相对偏移的估计比绝对坐标更准(参考 GUI-Cursor 交互式搜索范式)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | ||
| start | No | 光标初始位置(归一化 0-1 比例),默认 [0.5, 0.5] 即图中心 | |
| coords | No | 返回坐标单位:pixel(默认)或 norm(0-1000 归一化) | |
| target | Yes | 要定位的目标,如:蓝色提交按钮 / 红色圆形 / 报错文字 | |
| out_path | No | 保存最终光标位置的图(必须位于输出目录内) | |
| max_steps | No | 最大移动轮数,默认 6,范围 1-20 | |
| step_ratio | No | 单轮最大移动比例(相对图宽高),默认 0.25,范围 0.05-0.6 |