{"id":45239,"date":"2024-06-12T15:06:52","date_gmt":"2024-06-12T21:06:52","guid":{"rendered":"https:\/\/www.realsenseai.com\/uncategorized-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/"},"modified":"2024-06-12T21:06:52","modified_gmt":"2024-06-13T03:06:52","slug":"building-an-ai-powered-robotic-arm-assistant-using-d435","status":"publish","type":"post","link":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/","title":{"rendered":"Building an AI-powered robotic arm assistant using D435"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">The Tabletop HandyBot is an AI-powered robotic arm assistant that carries out voice commands to bridge the digital and physical worlds.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Chatbots powered by modern large language models (LLMs) have opened many people\u2019s eyes to the possibility of machines handling life\u2019s mundane tasks for us. With their advanced capabilities, these chatbots can automate a wide range of functions, from scheduling appointments and answering frequently asked questions to providing customer support and generating text summaries. This has not only freed up human time and resources but also enabled businesses to operate more efficiently and effectively.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But one thing that all of these tasks have in common is that they are entirely virtual. Sure, a chatbot can give you instructions on how to make dinner, but it cannot go any further. Engineer and roboticist Yifei Cheng has recently built a robot that can help to bridge the gap between the digital and physical worlds. Called the <a href=\"https:\/\/github.com\/ycheng517\/tabletop-handybot\" target=\"_blank\" rel=\"noopener\">Tabletop HandyBot<\/a>, Cheng\u2019s robot arm leverages AI, such as LLMs, to interpret a user\u2019s voice commands and devise a set of steps to carry them out in the real world. It is billed as a low-cost AI-powered robotic arm assistant \u2014 but before you get too excited, keep in mind that robotics can be a very expensive pastime. In this case, low-cost means about $2,300 in parts.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><figure id=\"attachment_23708\" aria-describedby=\"caption-attachment-23708\" style=\"width: 1560px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-23708 size-full\" src=\"https:\/\/realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png.webp\" alt=\"The system architecture (credits: Yifei Cheng)\" width=\"1560\" height=\"878\" srcset=\"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png.webp 1560w, https:\/\/www.realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png-300x169.webp 300w, https:\/\/www.realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png-1024x576.webp 1024w, https:\/\/www.realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png-768x432.webp 768w, https:\/\/www.realsenseai.com\/wp-content\/uploads\/2024\/06\/architecture_diagram_Pv7KY70aKv.png-1536x864.webp 1536w\" sizes=\"auto, (max-width: 1560px) 100vw, 1560px\" \/><figcaption id=\"caption-attachment-23708\" class=\"wp-caption-text\">The system architecture (credits: Yifei Cheng)<\/figcaption><\/figure><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At present, the Tabletop HandyBot is capable of listening for commands, then picking up a nearby object and moving it to another location, as directed. This is a very generic capability that could be used in a number of applications, so it is a nice starting point. Given the tech stack, this robot could be taught to do far more in the future, however.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><iframe loading=\"lazy\" title=\"Tabletop HandyBot - voice controlled robotic arm assistant #robot #ai #chatgpt\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/fsCkS7HvgGo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On the hardware side, Tabletop HandyBot consists of an off-the-shelf Annin Robotics AR4 6-DOF desktop size industrial robot arm. This is paired with a RealSense D435 depth camera to capture data about the robot\u2019s environment. Finally, a microphone is utilized to capture the audio of voice commands.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Voice commands are processed by OpenAI\u2019s Whisper algorithm to convert them to text, before they are forwarded into ChatGPT as a prompt. Depth images are processed by the Grounding DINO object detection algorithm, and that information is also fed into ChatGPT. The detected objects are further processed by Segment Anything and Open3D before being passed into a grasping algorithm. The output from ChatGPT is also fed into that grasping algorithm, which works with the AR4 ROS driver to control the robot and carry out the user\u2019s request.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the project\u2019s <a href=\"https:\/\/github.com\/ycheng517\/tabletop-handybot\" target=\"_blank\" rel=\"noopener\">GitHub repository<\/a>, Cheng goes into detail about the exact hardware and software that was used, and also gives step-by-step instructions to get a Tabletop HandyBot up and running. If you happen to be one of the few people that already has this hardware on hand, you should be able to get a working system up and running quickly. Alternatively, if you have access to another robotic arm, even one with limited capabilities, you can examine the processing workflow and develop a similar system of your own.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In any case, the demo video is well worth a watch. What would you do if you had a Tabletop HandyBot on your desk?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The RealSense D435 Depth Camera plays a crucial role in the Tabletop HandyBot project, providing essential 3D perception capabilities. The camera delivers bright and clear RGB images, enabling effective detection and segmentation of objects on the tabletop. The provided calibration parameters help to compensate for any camera skew, thereby enhancing perception accuracy. The depth map generated by the camera is used to construct point clouds of objects within the scene, allowing for precise calculation of grasp points. The quality of the point clouds produced by the camera has been great. Additionally, the project seamlessly integrates with this camera through the ROS wrapper realsense-ros, which is very easy to install, works great out-of-the-box, and makes it easy to customize all kinds of configurations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Tabletop HandyBot is an AI-powered robotic arm [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":42753,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"featured_image_focal_point":[],"inline_featured_image":false,"footnotes":""},"categories":[1195,1199,1200,1201,1204,1198,1193,1206],"tags":[498,1247,500],"capability_application":[],"industry":[],"class_list":["post-45239","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-d400-cn","category-how-to-cn","category-insights-cn","category-lidar-cn","category-vr-cn","category-facial-authentication-cn","category-news-insights-cn","category-whitepapers-cn","tag-d435-2","tag-d435-cn","tag-robotics-2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Building an AI-powered robotic arm assistant using D435 - RealSense<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building an AI-powered robotic arm assistant using D435\" \/>\n<meta property=\"og:description\" content=\"The Tabletop HandyBot is an AI-powered robotic arm [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/\" \/>\n<meta property=\"og:site_name\" content=\"RealSense\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-12T21:06:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-13T03:06:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1077\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"webmaster@freshwatercreative.ca\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"webmaster@freshwatercreative.ca\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/\"},\"headline\":\"Building an AI-powered robotic arm assistant using D435\",\"datePublished\":\"2024-06-12T21:06:52+00:00\",\"dateModified\":\"2024-06-13T03:06:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/\"},\"wordCount\":690,\"publisher\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/ai_assitant_hero_1920.jpg\",\"keywords\":[\"D435\",\"D435\",\"Robotics\"],\"articleSection\":[\"D400\",\"How-To\",\"Insights\",\"LiDAR\",\"VR\",\"\u4eba\u8138\u8bc6\u522b\",\"\u65b0\u95fb\u4e0e\u6d1e\u5bdf\",\"\u767d\u76ae\u4e66\"],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/\",\"url\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/\",\"name\":\"Building an AI-powered robotic arm assistant using D435 - RealSense\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/ai_assitant_hero_1920.jpg\",\"datePublished\":\"2024-06-12T21:06:52+00:00\",\"dateModified\":\"2024-06-13T03:06:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/ai_assitant_hero_1920.jpg\",\"contentUrl\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/ai_assitant_hero_1920.jpg\",\"width\":1920,\"height\":1077},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/news-insights-cn\\\/building-an-ai-powered-robotic-arm-assistant-using-d435\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"RealSense\",\"item\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u65b0\u95fb\u4e0e\u6d1e\u5bdf\",\"item\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/category\\\/news-insights-cn\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"D400\",\"item\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/category\\\/news-insights-cn\\\/d400-cn\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Building an AI-powered robotic arm assistant using D435\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#website\",\"url\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/\",\"name\":\"RealSense\",\"description\":\"Powering Physical AI with Advanced Vision and Perception\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#organization\",\"name\":\"RealSense\",\"url\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/realsenseai_logo.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.realsenseai.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/realsenseai_logo.jpeg\",\"width\":200,\"height\":200,\"caption\":\"RealSense\"},\"image\":{\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/linkedin.com\\\/company\\\/realsenseai\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@IntelRealSense\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.realsenseai.com\\\/cn\\\/#\\\/schema\\\/person\\\/267263d5df51bbe26099751b79bf7d7a\",\"name\":\"webmaster@freshwatercreative.ca\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g\",\"caption\":\"webmaster@freshwatercreative.ca\"},\"sameAs\":[\"https:\\\/\\\/realsenseai.com\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Building an AI-powered robotic arm assistant using D435 - RealSense","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/","og_locale":"zh_CN","og_type":"article","og_title":"Building an AI-powered robotic arm assistant using D435","og_description":"The Tabletop HandyBot is an AI-powered robotic arm [&hellip;]","og_url":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/","og_site_name":"RealSense","article_published_time":"2024-06-12T21:06:52+00:00","article_modified_time":"2024-06-13T03:06:52+00:00","og_image":[{"width":1920,"height":1077,"url":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg","type":"image\/jpeg"}],"author":"webmaster@freshwatercreative.ca","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"webmaster@freshwatercreative.ca","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"3 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#article","isPartOf":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/"},"headline":"Building an AI-powered robotic arm assistant using D435","datePublished":"2024-06-12T21:06:52+00:00","dateModified":"2024-06-13T03:06:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/"},"wordCount":690,"publisher":{"@id":"https:\/\/www.realsenseai.com\/cn\/#organization"},"image":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#primaryimage"},"thumbnailUrl":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg","keywords":["D435","D435","Robotics"],"articleSection":["D400","How-To","Insights","LiDAR","VR","\u4eba\u8138\u8bc6\u522b","\u65b0\u95fb\u4e0e\u6d1e\u5bdf","\u767d\u76ae\u4e66"],"inLanguage":"zh-Hans"},{"@type":"WebPage","@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/","url":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/","name":"Building an AI-powered robotic arm assistant using D435 - RealSense","isPartOf":{"@id":"https:\/\/www.realsenseai.com\/cn\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#primaryimage"},"image":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#primaryimage"},"thumbnailUrl":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg","datePublished":"2024-06-12T21:06:52+00:00","dateModified":"2024-06-13T03:06:52+00:00","breadcrumb":{"@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#primaryimage","url":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg","contentUrl":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2026\/01\/ai_assitant_hero_1920.jpg","width":1920,"height":1077},{"@type":"BreadcrumbList","@id":"https:\/\/www.realsenseai.com\/cn\/news-insights-cn\/building-an-ai-powered-robotic-arm-assistant-using-d435\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"RealSense","item":"https:\/\/www.realsenseai.com\/cn\/"},{"@type":"ListItem","position":2,"name":"\u65b0\u95fb\u4e0e\u6d1e\u5bdf","item":"https:\/\/www.realsenseai.com\/cn\/category\/news-insights-cn\/"},{"@type":"ListItem","position":3,"name":"D400","item":"https:\/\/www.realsenseai.com\/cn\/category\/news-insights-cn\/d400-cn\/"},{"@type":"ListItem","position":4,"name":"Building an AI-powered robotic arm assistant using D435"}]},{"@type":"WebSite","@id":"https:\/\/www.realsenseai.com\/cn\/#website","url":"https:\/\/www.realsenseai.com\/cn\/","name":"RealSense","description":"Powering Physical AI with Advanced Vision and Perception","publisher":{"@id":"https:\/\/www.realsenseai.com\/cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.realsenseai.com\/cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/www.realsenseai.com\/cn\/#organization","name":"RealSense","url":"https:\/\/www.realsenseai.com\/cn\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.realsenseai.com\/cn\/#\/schema\/logo\/image\/","url":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2025\/07\/realsenseai_logo.jpeg","contentUrl":"https:\/\/www.realsenseai.com\/wp-content\/uploads\/2025\/07\/realsenseai_logo.jpeg","width":200,"height":200,"caption":"RealSense"},"image":{"@id":"https:\/\/www.realsenseai.com\/cn\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/linkedin.com\/company\/realsenseai\/","https:\/\/www.youtube.com\/@IntelRealSense"]},{"@type":"Person","@id":"https:\/\/www.realsenseai.com\/cn\/#\/schema\/person\/267263d5df51bbe26099751b79bf7d7a","name":"webmaster@freshwatercreative.ca","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/secure.gravatar.com\/avatar\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f709b39fa8422d35a6d83876ff73052452221b58a440c579b3494f5577e5bbc5?s=96&d=mm&r=g","caption":"webmaster@freshwatercreative.ca"},"sameAs":["https:\/\/realsenseai.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/posts\/45239","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/comments?post=45239"}],"version-history":[{"count":0,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/posts\/45239\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/media\/42753"}],"wp:attachment":[{"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/media?parent=45239"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/categories?post=45239"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/tags?post=45239"},{"taxonomy":"capability_application","embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/capability_application?post=45239"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.realsenseai.com\/cn\/wp-json\/wp\/v2\/industry?post=45239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}