<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hans-CN">
	<id>https://wiki2.lessokaji.com/index.php?action=history&amp;feed=atom&amp;title=%E5%A4%A9%E7%9C%BC%E7%B3%BB%E7%BB%9F</id>
	<title>天眼系统 - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://wiki2.lessokaji.com/index.php?action=history&amp;feed=atom&amp;title=%E5%A4%A9%E7%9C%BC%E7%B3%BB%E7%BB%9F"/>
	<link rel="alternate" type="text/html" href="https://wiki2.lessokaji.com/index.php?title=%E5%A4%A9%E7%9C%BC%E7%B3%BB%E7%BB%9F&amp;action=history"/>
	<updated>2026-05-16T14:59:18Z</updated>
	<subtitle>本wiki上该页面的版本历史</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://wiki2.lessokaji.com/index.php?title=%E5%A4%A9%E7%9C%BC%E7%B3%BB%E7%BB%9F&amp;diff=1026&amp;oldid=prev</id>
		<title>Artheru：​Initial bilingual draft (auto-published)</title>
		<link rel="alternate" type="text/html" href="https://wiki2.lessokaji.com/index.php?title=%E5%A4%A9%E7%9C%BC%E7%B3%BB%E7%BB%9F&amp;diff=1026&amp;oldid=prev"/>
		<updated>2026-05-16T11:43:03Z</updated>

		<summary type="html">&lt;p&gt;Initial bilingual draft (auto-published)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;languages/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 概述 / Overview ==&lt;br /&gt;
天眼系统（Skyeye）是 MDCS 中的 ''高位 3D 视觉''组件：在装卸车口、密集仓储区等关键位置吊装俯拍 3D 相机，把全局货物 / 堆码 / 车辆状态实时回传给 SimpleComposer，让多 AGV 协同完成单车感知盲区的作业。&lt;br /&gt;
&lt;br /&gt;
Skyeye is MDCS's '''overhead 3D vision''' subsystem: ceiling-mounted 3D cameras at critical points (loading docks, dense storage) provide a global view of cargo / stacks / vehicles to SimpleComposer in real time, enabling multi-AGV cooperation where individual AGVs can't see.&lt;br /&gt;
&lt;br /&gt;
== 系统组件 / Components ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! 部件 / Part !! 规格 / Spec&lt;br /&gt;
|-&lt;br /&gt;
| 高位 3D 相机 / Overhead 3D camera || ToF 或结构光，安装高度 ≥ 4 m / ToF or structured light, ≥ 4 m mount&lt;br /&gt;
|-&lt;br /&gt;
| 推理服务 / Inference service || 把 3D 点云转 ''格点占用 + 朝向''，发布到 SimpleComposer&lt;br /&gt;
|-&lt;br /&gt;
| 数据通道 / Channel || HTTP / WebSocket / DObject 共享内存&lt;br /&gt;
|-&lt;br /&gt;
| 标定 / Calibration || 相机外参对齐到仓库世界坐标系&lt;br /&gt;
|-&lt;br /&gt;
| SimpleComposer SkyeyeStrategy 插件 || 调度策略：[[Special:MyLanguage/联动天眼系统进行装卸车|联动天眼系统进行装卸车]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 典型应用 / Typical use cases ==&lt;br /&gt;
* '''半挂车装车 / 卸车''' — 见 [[Special:MyLanguage/联动天眼系统进行装卸车|联动天眼系统进行装卸车]]&lt;br /&gt;
* '''集装箱卸货'''&lt;br /&gt;
* '''密集堆垛区智能堆码''' — 见 [[Special:MyLanguage/识别料框并堆垛拆垛|识别料框并堆垛拆垛]]&lt;br /&gt;
* '''高架仓拣选辅助''' — 全局看哪一架还有空位&lt;br /&gt;
* '''异常监控''' — 货物倒塌、人员闯入、设备故障&lt;br /&gt;
&lt;br /&gt;
== 数据契约 / Data contract ==&lt;br /&gt;
天眼推理服务发布 ''帧''级数据：&lt;br /&gt;
The inference service publishes per-frame data:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;json&amp;quot;&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
  &amp;quot;ts&amp;quot;: 1715843200,&lt;br /&gt;
  &amp;quot;areaId&amp;quot;: &amp;quot;DOCK_NORTH&amp;quot;,&lt;br /&gt;
  &amp;quot;frame&amp;quot;: 12345,&lt;br /&gt;
  &amp;quot;objects&amp;quot;: [&lt;br /&gt;
    { &amp;quot;id&amp;quot;: 17, &amp;quot;type&amp;quot;: &amp;quot;wood_pallet&amp;quot;,&lt;br /&gt;
      &amp;quot;x&amp;quot;: 850, &amp;quot;y&amp;quot;: 600, &amp;quot;z&amp;quot;: 230, &amp;quot;theta&amp;quot;: 0.04,&lt;br /&gt;
      &amp;quot;size&amp;quot;: {&amp;quot;w&amp;quot;: 1100, &amp;quot;l&amp;quot;: 1100, &amp;quot;h&amp;quot;: 150},&lt;br /&gt;
      &amp;quot;conf&amp;quot;: 0.91 },&lt;br /&gt;
    { &amp;quot;id&amp;quot;: 18, &amp;quot;type&amp;quot;: &amp;quot;kit_bin&amp;quot;,&lt;br /&gt;
      &amp;quot;x&amp;quot;: 1820, &amp;quot;y&amp;quot;: 600, &amp;quot;z&amp;quot;: 250, &amp;quot;theta&amp;quot;: 0.0, &amp;quot;conf&amp;quot;: 0.88 }&lt;br /&gt;
  ],&lt;br /&gt;
  &amp;quot;grid&amp;quot;: {&lt;br /&gt;
    &amp;quot;cellSize&amp;quot;: 200,&lt;br /&gt;
    &amp;quot;cells&amp;quot;: [ /* ... */ ]&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== 与 AGV 自身感知的协同 / Cooperation with on-AGV sensing ==&lt;br /&gt;
天眼提供 ''全局'' + ''粗精度''（≈ ±50 mm），AGV 自身激光 / 3D 提供 ''局部'' + ''细精度''（≈ ±10 mm）。MDCS 把它们结合：&lt;br /&gt;
&lt;br /&gt;
Skyeye gives '''global + coarse''' (≈ ±50 mm); on-AGV sensing gives '''local + fine''' (≈ ±10 mm). They combine:&lt;br /&gt;
&lt;br /&gt;
* '''分工 / Division of labour''': Skyeye 告诉 AGV &amp;quot;去哪&amp;quot;；AGV 自己 &amp;quot;怎么去 + 精对位&amp;quot;。&lt;br /&gt;
* '''冲突仲裁 / Conflict resolution''': 二者分歧时，''以局部传感为准 + 让 Skyeye 重扫''。&lt;br /&gt;
* '''时间同步 / Time sync''': NTP / PTP，误差 &amp;lt; 100 ms。&lt;br /&gt;
&lt;br /&gt;
== 标定 / Calibration ==&lt;br /&gt;
天眼相机的外参 = ''相机到仓库世界坐标系''变换。标定流程：&lt;br /&gt;
Calibration of the camera-to-world transform:&lt;br /&gt;
&lt;br /&gt;
# 在相机视场内放 N ≥ 4 个 ''已知位置''的标定靶（地面贴 AprilTag）。&lt;br /&gt;
# 相机扫一帧 → 检测靶位置（相机坐标系）。&lt;br /&gt;
# 用标定靶世界坐标 + 相机坐标做最小二乘 → 外参。&lt;br /&gt;
# 误差 ≤ 20 mm 视为合格。&lt;br /&gt;
&lt;br /&gt;
# Place N ≥ 4 known-pose calibration targets in the FOV.&lt;br /&gt;
# Scan; detect their positions in the camera frame.&lt;br /&gt;
# Least-squares from world ↔ camera point pairs → extrinsics.&lt;br /&gt;
# Acceptable error ≤ 20 mm.&lt;br /&gt;
&lt;br /&gt;
详见 [[Special:MyLanguage/标定与校准|标定与校准]]。&lt;br /&gt;
&lt;br /&gt;
== 部署 / Deployment ==&lt;br /&gt;
* 推荐每个装卸口 ''≥ 1''台天眼，重要节点 2 台冗余。&lt;br /&gt;
* 安装位置：避开起吊 / 叉车作业的物理路径。&lt;br /&gt;
* 数据带宽：单 3D 相机 ~30 Mbps，多相机用千兆以太 / 私有 VLAN。&lt;br /&gt;
* 推理服务部署：本地 GPU 工控机（推荐）或边缘 / 云（按延迟需求）。&lt;br /&gt;
&lt;br /&gt;
== 失败模式 / Failure modes ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! 失败 / Failure !! 处理 / Recovery&lt;br /&gt;
|-&lt;br /&gt;
| 相机断电 / Camera offline || SimpleComposer 标该区域 ''Skyeye-down''，暂停天眼依赖任务&lt;br /&gt;
|-&lt;br /&gt;
| 标定漂 / Drift || 自动重扫 ''参考靶''；偏差 &amp;gt; 50 mm 触发人工复测&lt;br /&gt;
|-&lt;br /&gt;
| 视觉遮挡 / Occlusion (overhead crane, banner) || 切到激光 SLAM + 局部 AGV 感知&lt;br /&gt;
|-&lt;br /&gt;
| 误识别 / False detection || 置信度阈值 + 多帧一致性 + 人工标注的负例反馈&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 相关页面 / See also ==&lt;br /&gt;
* [[Special:MyLanguage/联动天眼系统进行装卸车|联动天眼系统进行装卸车]]&lt;br /&gt;
* [[Special:MyLanguage/自动装卸车应用|自动装卸车应用]]&lt;br /&gt;
* [[Special:MyLanguage/3D相机适配|3D相机适配]]&lt;br /&gt;
* [[Special:MyLanguage/天花板SLAM|天花板SLAM]] — 注意视角相反&lt;br /&gt;
&lt;br /&gt;
[[Category:特殊技术方案]]&lt;/div&gt;</summary>
		<author><name>Artheru</name></author>
	</entry>
</feed>