Install
openclaw skills install smyx-transpiration-rate-estimation-analysisAI-powered transpiration rate estimation for indoor plants. From smart planters or fixed cameras, uses thermal infrared images of leaves (preferred) — or regular RGB images combined with ambient temperature/humidity — to estimate the leaf-to-air temperature difference, combines radiation/humidity parameters (sensor or model-inferred), and computes a relative transpiration rate index (0-100%). Transpiration rate correlates with root water-uptake activity, indirectly reflecting root health and water transport capacity. Helps determine whether the plant is water-stressed, has damaged roots, or is under environmental stress. Scenarios: smart planters, indoor green plant care, plant factories, research greenhouses. | 通过智能花盆或固定摄像头采集植物叶片的红外热成像图像(或普通RGB图像结合环境温湿度数据),利用AI模型估算叶片温度与空气温度的差值,结合辐射、湿度等参数(可由传感器提供或模型内估),计算植物蒸腾速率的相对值(0-100%)。蒸腾速率与根系吸水活力正相关,可间接反映根系健康及水分输送能力。该技能有助于判断植物是否缺水、根系受损或环境胁迫。应用场景:智能花盆、室内绿植养护、植物工厂、科研温室。
openclaw skills install smyx-transpiration-rate-estimation-analysisAI-powered transpiration rate estimation for indoor plants. From smart planters or fixed cameras, uses thermal infrared images of leaves (preferred) — or regular RGB images combined with ambient temperature/humidity — to estimate the leaf-to-air temperature difference, combines radiation/humidity parameters (sensor or model-inferred), and computes a relative transpiration rate index (0-100%). Transpiration rate correlates with root water-uptake activity, indirectly reflecting root health and water transport capacity. Helps determine whether the plant is water-stressed, has damaged roots, or is under environmental stress. Scenarios: smart planters, indoor green plant care, plant factories, research greenhouses.
通过智能花盆或固定摄像头采集植物叶片的红外热成像图像(或普通RGB图像结合环境温湿度数据),利用AI模型估算叶片温度与空气温度的差值,结合辐射、湿度等参数(可由传感器提供或模型内估),计算植物蒸腾速率的相对值(0-100%)。蒸腾速率与根系吸水活力正相关,可间接反映根系健康及水分输送能力。该技能有助于判断植物是否缺水、根系受损或环境胁迫。应用场景:智能花盆、室内绿植养护、植物工厂、科研温室。
假设你是一个专业的植物生理 AI。你的任务是分析植物叶片的图像(热成像优先,或普通 RGB 结合环境温湿度),估算叶片-空气温差,并基于能量平衡原理估算蒸腾速率的相对值(0-100%),进而推断根系吸水活力。不要提供土壤水分具体数值,仅输出蒸腾速率指数和活力评估。
python -m scripts.smyx_transpiration_rate_estimation_analysis --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.smyx_transpiration_rate_estimation_analysis 处理图像/视频文件(必须在技能根目录下运行脚本)--input: 本地图像/视频文件路径(热成像或 RGB)--url: 网络图像/视频 URL 地址(API 服务自动下载)--pet-type: 类别标识,植物场景使用 other,默认 other--open-id: 当前用户的 open-id(必填,按上述流程获取)--list: 显示蒸腾速率历史分析报告列表清单(可以输入起始日期参数过滤数据范围)--api-key: API 访问密钥(可选)--api-url: API 服务地址(可选,使用默认值)--detail: 输出详细程度(basic/standard/json,默认 json)--output: 结果输出文件路径(可选)蒸腾速率估算报告-{记录id}形式拼接, "点击查看"列使用[🔗 查看报告](reportImageUrl)格式的超链接,用户点击即可直接跳转到对应的完整报告页面。| 报告名称 | 植物类别 | 分析时间 | 点击查看 |
|---|---|---|---|
| 蒸腾速率估算报告-20260523000000001 | 室内绿植 | 2026-05-23 00:00:00 | 🔗 查看报告 |
# 分析本地热成像/RGB 叶片图像(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.smyx_transpiration_rate_estimation_analysis --input /path/to/leaf_thermal.jpg --open-id your-open-id
# 分析网络图像/视频(以下只是示例,禁止直接使用openclaw-control-ui 作为 open-id)
python -m scripts.smyx_transpiration_rate_estimation_analysis --url https://example.com/leaf.jpg --open-id your-open-id
# 显示历史分析报告/显示分析报告清单列表/显示历史蒸腾报告(自动触发关键词:查看历史蒸腾报告、历史报告、蒸腾速率清单等)
python -m scripts.smyx_transpiration_rate_estimation_analysis --list --open-id your-open-id
# 输出精简报告
python -m scripts.smyx_transpiration_rate_estimation_analysis --input leaf.jpg --open-id your-open-id --detail basic
# 保存结果到文件
python -m scripts.smyx_transpiration_rate_estimation_analysis --input leaf.jpg --open-id your-open-id --output result.json