AI 病蟲害偵測與防治規劃

AI → Human

AI 分析無人機影像以偵測病蟲害並告警農業技術人員。

5 個節點 · 4 條連接agriculture
eventagenthuman
視覺化
無人機與攝影機影像擷取event

定期對農作區域進行空拍或田間攝影。

sequentialAI 病蟲害識別
AI 病蟲害識別agent

電腦視覺模型分類害蟲種類與侵害密度。

conditional侵害嚴重程度評分
侵害嚴重程度評分system

依受影響面積與害蟲類型分類為輕微、中等或嚴重。

sequential農業技術人員告警
農業技術人員告警api

行動推播通知,附帶受影響區域地圖與嚴重程度詳情。

sequential防治計畫決策
防治計畫決策human

農業技術人員選擇防治方法、施用時機與施用區域。

uc-pest-detection.osop.yaml
osop_version: "1.0"
id: "pest-detection"
name:"AI 病蟲害偵測與防治規劃"
description:"AI 分析無人機影像以偵測病蟲害並告警農業技術人員。"

nodes:
  - id: "image_capture"
    type: "event"
    name: "無人機與攝影機影像擷取"
    description: "定期對農作區域進行空拍或田間攝影。"

  - id: "pest_identify"
    type: "agent"
    subtype: "llm"
    name: "AI 病蟲害識別"
    description: "電腦視覺模型分類害蟲種類與侵害密度。"
    security:
      risk_level: "low"

  - id: "severity_score"
    type: "system"
    name: "侵害嚴重程度評分"
    description: "依受影響面積與害蟲類型分類為輕微、中等或嚴重。"

  - id: "agronomist_alert"
    type: "api"
    name: "農業技術人員告警"
    description: "行動推播通知,附帶受影響區域地圖與嚴重程度詳情。"

  - id: "treatment_plan"
    type: "human"
    subtype: "review"
    name: "防治計畫決策"
    description: "農業技術人員選擇防治方法、施用時機與施用區域。"
    security:
      approval_gate: true

edges:
  - from: "image_capture"
    to: "pest_identify"
    mode: "sequential"
  - from: "pest_identify"
    to: "severity_score"
    mode: "conditional"
    when: "pest.detected == true"
  - from: "severity_score"
    to: "agronomist_alert"
    mode: "sequential"
  - from: "agronomist_alert"
    to: "treatment_plan"
    mode: "sequential"