robot_daily_20260304_234333.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  8. <title>RobotDaily - 每日 AI 论文速递</title>
  9. <style>
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. -webkit-tap-highlight-color: transparent;
  15. }
  16. body {
  17. font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  18. background: linear-gradient(135deg, #5E60CE 0%, #4CC9F0 100%);
  19. padding: 16px;
  20. padding-bottom: 80px;
  21. color: #333;
  22. line-height: 1.6;
  23. font-size: 15px;
  24. }
  25. .container {
  26. max-width: 600px;
  27. margin: 0 auto;
  28. background: #f8f9fa;
  29. border-radius: 16px;
  30. box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  31. overflow: hidden;
  32. }
  33. .header {
  34. background: linear-gradient(135deg, #4CA1AF 0%, #2C3E50 100%);
  35. color: white;
  36. padding: 24px 20px;
  37. text-align: center;
  38. background-image: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
  39. }
  40. .header h1 {
  41. font-size: 22px;
  42. letter-spacing: 1px;
  43. margin-bottom: 4px;
  44. font-weight: 700;
  45. }
  46. .header .date {
  47. font-size: 14px;
  48. opacity: 0.9;
  49. }
  50. .paper-card {
  51. background: white;
  52. margin: 12px 16px;
  53. padding: 16px;
  54. border-radius: 12px;
  55. box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  56. transition: all 0.2s ease;
  57. cursor: pointer;
  58. }
  59. .paper-card:active {
  60. transform: scale(0.98);
  61. box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  62. }
  63. .paper-card:last-child {
  64. margin-bottom: 80px;
  65. }
  66. .paper-card .meta {
  67. display: flex;
  68. align-items: center;
  69. gap: 8px;
  70. margin-bottom: 8px;
  71. }
  72. .paper-card .badge {
  73. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  74. color: white;
  75. padding: 4px 12px;
  76. border-radius: 12px;
  77. font-size: 11px;
  78. font-weight: 600;
  79. }
  80. .paper-card .date {
  81. color: #7f8c8d;
  82. font-size: 13px;
  83. }
  84. .paper-card h2 {
  85. font-size: 17px;
  86. color: #2c3e50;
  87. margin-bottom: 8px;
  88. line-height: 1.4;
  89. font-weight: 600;
  90. }
  91. .paper-card .abstract {
  92. font-size: 14px;
  93. color: #555;
  94. margin-bottom: 10px;
  95. background: #f8f9fa;
  96. padding: 10px 12px;
  97. border-radius: 8px;
  98. border-left: 3px solid #667eea;
  99. line-height: 1.6;
  100. }
  101. .paper-card .abstract b {
  102. color: #5E60CE;
  103. font-weight: 600;
  104. }
  105. .paper-card .translation {
  106. background: #fff9e6;
  107. padding: 10px 12px;
  108. border-radius: 8px;
  109. margin-bottom: 10px;
  110. font-size: 14px;
  111. color: #555;
  112. border-left: 3px solid #f39c12;
  113. line-height: 1.6;
  114. }
  115. .paper-card .translation b {
  116. color: #e67e22;
  117. font-weight: 600;
  118. }
  119. .paper-card .explanation {
  120. background: #e8f8f5;
  121. padding: 10px 12px;
  122. border-radius: 8px;
  123. margin-bottom: 10px;
  124. font-size: 14px;
  125. color: #555;
  126. border-left: 3px solid #27ae60;
  127. line-height: 1.7;
  128. }
  129. .paper-card .explanation b {
  130. color: #27ae60;
  131. font-weight: 600;
  132. }
  133. .paper-card .tags {
  134. display: flex;
  135. flex-wrap: wrap;
  136. gap: 6px;
  137. margin-top: 10px;
  138. }
  139. .paper-card .tag {
  140. background: #f0f2f5;
  141. color: #666;
  142. padding: 4px 10px;
  143. border-radius: 6px;
  144. font-size: 12px;
  145. }
  146. .paper-card .footer-links {
  147. display: flex;
  148. gap: 8px;
  149. margin-top: 12px;
  150. padding-top: 12px;
  151. border-top: 1px solid #eee;
  152. }
  153. .paper-card .link {
  154. display: inline-flex;
  155. align-items: center;
  156. justify-content: center;
  157. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  158. color: white;
  159. padding: 8px 16px;
  160. border-radius: 8px;
  161. font-size: 13px;
  162. text-decoration: none;
  163. flex: 1;
  164. }
  165. .paper-card .link:active {
  166. opacity: 0.9;
  167. }
  168. .footer {
  169. text-align: center;
  170. color: #7f8c8d;
  171. font-size: 12px;
  172. padding: 12px;
  173. }
  174. </style>
  175. </head>
  176. <body>
  177. <div class="container">
  178. <div class="header">
  179. <h1>🤖 RobotDaily</h1>
  180. <div class="date">每日 AI 前沿 · 2026年03月04日</div>
  181. </div>
  182. <div class="paper-card" onclick="window.open('https://arxiv.org/abs/2603.02458', '_blank')">
  183. <div class="meta">
  184. <span class="badge">#表征学习</span>
  185. <span class="date">📅 Wed, 04 Ma</span>
  186. </div>
  187. <h2>Learning Therapist Policy from Therapist-Exoskeleton-Patient Interaction</h2>
  188. <div class="abstract">
  189. <b>📝 英文摘要:</b><br>arXiv:2603.02458v1 Announce Type: new Abstract: Post-stroke rehabilitation is often necessary for patients to regain proper walking gait. However, the typical therapy process can be exhausting and physically demanding for therapists, potentially reducing therapy intensity, duration, and consistency over time. We propose a Patient-Therapist Force Field (PTFF) to visualize therapist responses to pa...
  190. </div>
  191. <div class="translation">
  192. <b>🇨🇳 中文翻译:</b><br>【中文翻译】post-stroke rehabilitation is often necessary for patients to regain proper walking gait. however, the typical therapy process can be exhausting and physically demanding for therapists, potentially reducing therapy intensity, duration, and consistency over time. 我们提出 a patient-therapist force field ...(注:当前为简化翻译,完整翻译需接入 LLM API)
  193. </div>
  194. <div class="explanation">
  195. 🔍 <b>研究重点</b><br>本研究使用强化学习方法,优化决策策略。<br><br>⚙️ <b>主要方法</b><br>采用了机器学习或优化方法。<br><br>🌟 <b>创新价值</b><br>提出了新颖的方法或见解。<br><br>🛠️ <b>应用场景</b><br>应用于机器人操作或控制任务。
  196. </div>
  197. <div class="tags">
  198. <span class="tag">#表征学习</span> <span class="tag">#特征工程</span> <span class="tag">#表示</span> <span class="tag">#vision</span> <span class="tag">#evaluation</span> <span class="tag">#ptff</span>
  199. </div>
  200. <div class="footer-links">
  201. <a href="https://arxiv.org/abs/2603.02458" class="link">📄 阅读原文</a>
  202. </div>
  203. </div>
  204. <div class="paper-card" onclick="window.open('https://arxiv.org/abs/2603.02500', '_blank')">
  205. <div class="meta">
  206. <span class="badge">#表征学习</span>
  207. <span class="date">📅 Wed, 04 Ma</span>
  208. </div>
  209. <h2>Instant and Reversible Adhesive-free Bonding Between Silicones and Glossy Papers for Soft Robotics</h2>
  210. <div class="abstract">
  211. <b>📝 英文摘要:</b><br>arXiv:2603.02500v1 Announce Type: new Abstract: Integrating silicone with non-extensible materials is a common strategy used in the fabrication of fluidically-driven soft actuators, yet conventional approaches often rely on irreversible adhesives or embedding processes that are labor-intensive and difficult to modify. This work presents silicone-glossy paper bonding (SGB), a rapid, adhesive-free,...
  212. </div>
  213. <div class="translation">
  214. <b>🇨🇳 中文翻译:</b><br>【中文翻译】integrating silicone with non-extensible materials is a common strategy used in the fabrication of fluidically-driven soft actuators, yet conventional 方法es often rely on irreversible adhesives or embedding processes that are labor-intensive and difficult to modify. this work presents silicone-glossy...(注:当前为简化翻译,完整翻译需接入 LLM API)
  215. </div>
  216. <div class="explanation">
  217. 🔍 <b>研究重点</b><br>本研究属于具身智能领域,关注机器人与环境的交互。<br><br>🌟 <b>创新价值</b><br>提出了新颖的方法或见解。
  218. </div>
  219. <div class="tags">
  220. <span class="tag">#表征学习</span> <span class="tag">#特征工程</span> <span class="tag">#表示</span> <span class="tag">#evaluation</span> <span class="tag">#reinforcement</span> <span class="tag">#embodied</span>
  221. </div>
  222. <div class="footer-links">
  223. <a href="https://arxiv.org/abs/2603.02500" class="link">📄 阅读原文</a>
  224. </div>
  225. </div>
  226. <div class="paper-card" onclick="window.open('https://arxiv.org/abs/2603.02291', '_blank')">
  227. <div class="meta">
  228. <span class="badge">#机器人</span>
  229. <span class="date">📅 Wed, 04 Ma</span>
  230. </div>
  231. <h2>Goal-Oriented Semantic Communication for ISAC-Enabled Robotic Obstacle Avoidance</h2>
  232. <div class="abstract">
  233. <b>📝 英文摘要:</b><br>arXiv:2603.02291v1 Announce Type: new Abstract: We investigate an integrated sensing and communication (ISAC)-enabled BS for the unmanned aerial vehicle (UAV) obstacle avoidance task, and propose a goal-oriented semantic communication (GOSC) framework for the BS to transmit sensing and command and control (C&C) signals efficiently and effectively. Our GOSC framework establishes a closed loop for ...
  234. </div>
  235. <div class="translation">
  236. <b>🇨🇳 中文翻译:</b><br>【中文翻译】we investigate an integrated sensing and communication (isac)-enabled bs for the unmanned aerial vehicle (uav) obstacle avoidance 任务, and propose a goal-oriented semantic communication (gosc) 框架 for the bs to transmit sensing and command and 控制 (c&c) signals efficiently and effectively. our gosc 框架 ...(注:当前为简化翻译,完整翻译需接入 LLM API)
  237. </div>
  238. <div class="explanation">
  239. 🔍 <b>研究重点</b><br>本研究属于具身智能领域,关注机器人与环境的交互。<br><br>⚙️ <b>主要方法</b><br>提出了新的框架或系统架构。<br><br>📈 <b>创新价值</b><br>研究取得了性能提升或改进。<br><br>🌟 <b>创新价值</b><br>提出了新颖的方法或见解。<br><br>🛠️ <b>应用场景</b><br>应用于机器人操作或控制任务。
  240. </div>
  241. <div class="tags">
  242. <span class="tag">#机器人学</span> <span class="tag">#自动化</span> <span class="tag">#控制</span> <span class="tag">#evaluation</span> <span class="tag">#uav</span> <span class="tag">#occlusion</span>
  243. </div>
  244. <div class="footer-links">
  245. <a href="https://arxiv.org/abs/2603.02291" class="link">📄 阅读原文</a>
  246. </div>
  247. </div>
  248. <div class="paper-card" onclick="window.open('https://arxiv.org/abs/2603.02511', '_blank')">
  249. <div class="meta">
  250. <span class="badge">#机器人</span>
  251. <span class="date">📅 Wed, 04 Ma</span>
  252. </div>
  253. <h2>Learning Object-Centric Spatial Reasoning for Sequential Manipulation in Cluttered Environments</h2>
  254. <div class="abstract">
  255. <b>📝 英文摘要:</b><br>arXiv:2603.02511v1 Announce Type: new Abstract: Robotic manipulation in cluttered environments presents a critical challenge for automation. Recent large-scale, end-to-end models demonstrate impressive capabilities but often lack the data efficiency and modularity required for retrieving objects in dense clutter. In this work, we argue for a paradigm of specialized, decoupled systems and present ...
  256. </div>
  257. <div class="translation">
  258. <b>🇨🇳 中文翻译:</b><br>【中文翻译】机器人ic 操作 in cluttered 环境s presents a critical challenge for automation. recent large-scale, end-to-end 模型s demonstrate impressive capabilities but often lack the data 效率 and modularity required for retrieving objects in dense clutter. 在本工作中, we argue for a paradigm of specialized, decoupled 系统s and ...(注:当前为简化翻译,完整翻译需接入 LLM API)
  259. </div>
  260. <div class="explanation">
  261. 🔍 <b>研究重点</b><br>本研究属于具身智能领域,关注机器人与环境的交互。<br><br>⚙️ <b>主要方法</b><br>提出了新的框架或系统架构。<br><br>📈 <b>创新价值</b><br>研究取得了性能提升或改进。<br><br>🌟 <b>创新价值</b><br>提出了新颖的方法或见解。<br><br>🛠️ <b>应用场景</b><br>应用于机器人操作或控制任务。
  262. </div>
  263. <div class="tags">
  264. <span class="tag">#机器人学</span> <span class="tag">#自动化</span> <span class="tag">#控制</span> <span class="tag">#evaluation</span> <span class="tag">#reinforcement</span> <span class="tag">#embodied</span>
  265. </div>
  266. <div class="footer-links">
  267. <a href="https://arxiv.org/abs/2603.02511" class="link">📄 阅读原文</a>
  268. </div>
  269. </div>
  270. <div class="paper-card" onclick="window.open('https://arxiv.org/abs/2603.02742', '_blank')">
  271. <div class="meta">
  272. <span class="badge">#AI 研究</span>
  273. <span class="date">📅 Wed, 04 Ma</span>
  274. </div>
  275. <h2>Robust Tightly-Coupled Filter-Based Monocular Visual-Inertial State Estimation and Graph-Based Evaluation for Autonomous Drone Racing</h2>
  276. <div class="abstract">
  277. <b>📝 英文摘要:</b><br>arXiv:2603.02742v1 Announce Type: new Abstract: Autonomous drone racing (ADR) demands state estimation that is simultaneously computationally efficient and resilient to the perceptual degradation experienced during extreme velocity and maneuvers. Traditional frameworks typically rely on conventional visual-inertial pipelines with loosely-coupled gate-based Perspective-n-Points (PnP) corrections t...
  278. </div>
  279. <div class="translation">
  280. <b>🇨🇳 中文翻译:</b><br>【中文翻译】autonomous drone racing (adr) demands state estimation that is simultaneously computationally efficient and resilient to the perceptual degradation experienced during extreme velocity and maneuvers. traditional 框架s typically rely on conventional visual-inertial pipelines with loosely-coupled gate-ba...(注:当前为简化翻译,完整翻译需接入 LLM API)
  281. </div>
  282. <div class="explanation">
  283. 🔍 <b>研究重点</b><br>本研究涉及计算机视觉,处理图像或视频信息。<br><br>⚙️ <b>主要方法</b><br>提出了新的框架或系统架构。<br><br>📈 <b>创新价值</b><br>研究取得了性能提升或改进。<br><br>🌟 <b>创新价值</b><br>提出了新颖的方法或见解。<br><br>🔍 <b>应用场景</b><br>应用于检测或识别任务。
  284. </div>
  285. <div class="tags">
  286. <span class="tag">#AI 研究</span> <span class="tag">#机器学习</span> <span class="tag">#深度学习</span> <span class="tag">#vision</span> <span class="tag">#evaluation</span> <span class="tag">#gnss</span>
  287. </div>
  288. <div class="footer-links">
  289. <a href="https://arxiv.org/abs/2603.02742" class="link">📄 阅读原文</a>
  290. </div>
  291. </div>
  292. <div class="footer">
  293. ✨ 每天早晨 10:30 准时推送 · 精选最具潜力的 AI 研究
  294. </div>
  295. </div>
  296. </body>
  297. </html>