Non-contact detection of heart rate, respiration, blood oxygen, and heart rate variability. No wearable devices are required; monitoring is achieved solely through camera footage. | 无感生命体征监测分析技能,非接触检测心率、呼吸、血氧、心率变异性,无需穿戴设备,通过摄像头画面即可监测
By leveraging standard cameras—such as those on smartphones or computers—to capture subtle physiological changes
invisible to the naked eye (like minute skin color variations or micro head movements), and combining them with advanced
computer vision and signal processing algorithms, this technology enables "imperceptible" monitoring of key vital
signs.
Users are not required to wear any wristbands, patches, or sensors. Simply by facing the camera in a natural state, the
system can precisely extract and analyze core health metrics—including heart rate, respiration rate, blood oxygen
saturation (SpO2), and heart rate variability (HRV)—within seconds to minutes.
This non-contact approach not only彻底 breaks the dependence on physical contact and dedicated medical devices,
effectively avoiding the risk of cross-infection, but also significantly enhances the convenience and comfort of health
monitoring, making ubiquitous health screening and remote care a reality.
这项技术通过利用普通摄像头(如智能手机或电脑摄像头)捕捉面部视频中肉眼难以察觉的微小生理变化(如皮肤颜色的细微改变或微小的头部运动),结合先进的计算机视觉与信号处理算法,实现了对人体关键生命体征的“无感”监测。用户无需佩戴任何手环、贴片或传感器,只需面对摄像头保持自然状态,系统即可在数秒至数分钟内精准提取并分析出心率、呼吸频率、血氧饱和度以及心率变异性等多项核心健康数据。这种非接触式的检测方式不仅彻底打破了传统医疗监测对物理接触和专用设备的依赖,有效避免了交叉感染风险,还极大地提升了健康监测的便捷性与舒适度,让随时随地的健康筛查与远程看护成为可能
本技能明确约定:
memory/YYYY-MM-DD.md、MEMORY.md 等本地文件python -m scripts.contactless_vital_signs_monitoring --list --open-id
参数调用 API
查询云端的历史报告数据requests>=2.28.0
为了获得较准确的监测结果,请确保:
在执行无感生命体征监测分析前,必须按以下优先级顺序获取 open-id:
第 1 步:【最高优先级】检查技能所在目录的配置文件(优先)
路径:skills/smyx_common/scripts/config.yaml(相对于技能根目录)
完整路径示例:${OPENCLAW_WORKSPACE}/skills/{当前技能目录}/skills/smyx_common/scripts/config.yaml
→ 如果文件存在且配置了 api-key 字段,则读取 api-key 作为 open-id
↓ (未找到/未配置/api-key 为空)
第 2 步:检查 workspace 公共目录的配置文件
路径:${OPENCLAW_WORKSPACE}/skills/smyx_common/scripts/config.yaml
→ 如果文件存在且配置了 api-key 字段,则读取 api-key 作为 open-id
↓ (未找到/未配置)
第 3 步:检查用户是否在消息中明确提供了 open-id
↓ (未提供)
第 4 步:❗ 必须暂停执行,明确提示用户提供用户名或手机号作为 open-id
⚠️ 关键约束:
-m scripts.contactless_vital_signs_monitoring 处理视频(必须在技能根目录下运行脚本)--input: 本地视频文件路径(使用 multipart/form-data 方式上传)--url: 网络视频 URL 地址(API 服务自动下载)--open-id: 当前用户的 open-id(必填,按上述流程获取)--list: 显示历史无感生命体征监测分析报告列表清单(可以输入起始日期参数过滤数据范围)--api-key: API 访问密钥(可选)--api-url: API 服务地址(可选,使用默认值)--detail: 输出详细程度(basic/standard/json,默认 json)--output: 结果输出文件路径(可选)无感生命体征监测报告-{记录id}形式拼接, "
点击查看"列使用
[🔗 查看报告](reportImageUrl)
格式的超链接,用户点击即可直接跳转到对应的完整报告页面。| 报告名称 | 视频时长 | 分析时间 | 心率(次/分) | 点击查看 |
|---|---|---|---|---|
| 无感生命体征监测报告 -20260328221000001 | 15秒 | 2026-03-28 22:10:00 | ||
| 72 | 🔗 查看报告 |
# 分析本地视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.contactless_vital_signs_monitoring --input /path/to/face.mp4 --open-id openclaw-control-ui
# 分析网络视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.contactless_vital_signs_monitoring --url https://example.com/face.mp4 --open-id openclaw-control-ui
# 显示历史监测报告/显示监测报告清单列表/显示历史体征报告(自动触发关键词:查看历史监测报告、历史报告、监测报告清单等)
python -m scripts.contactless_vital_signs_monitoring --list --open-id openclaw-control-ui
# 输出精简报告
python -m scripts.contactless_vital_signs_monitoring --input face.mp4 --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.contactless_vital_signs_monitoring --input face.mp4 --open-id your-open-id --output result.json