Please confirm you are human

This browser or connection looks automated. Press and continuously hold the control for 3 seconds to enable Google-hosted web results and, when separately allowed, AI-assisted answers.

A successful check enables 100 search requests. Interactive access does not authorize scraping, systematic collection, or reuse of search output.

Hold with a pointer, or hold Space or Enter.

News

DEV Community
dev.to > patilanupam > atlas-and-spatial-intelligence-how-ai-is-redefining-autonomous-systems-in-2026-3kbg

Atlas and Spatial Intelligence: How AI is Redefining Autonomous Systems in 2026

2+ hour, 10+ min ago   (501+ words) Geospatial intelligence is booming, with the market projected to exceed $18 billion globally by 2026. This growth is reshaping how autonomous systems perceive and navigate their environments. AI-powered models are driving innovations in self-navigating vehicles, urban planning, and more, replacing the reliance…...

DEV Community
dev.to > vmodal_ai > open-vocabulary-object-detection-for-robots-using-vision-language-models-1p01

Open-Vocabulary Object Detection for Robots Using Vision-Language Models

1+ day, 12+ hour ago   (151+ words) Traditional object detectors are trained on a fixed set of classes. But robots often encounter objects that were not explicitly included in their original training labels. Open-vocabulary perception allows a robot to query concepts using natural language. A robot deployed…...

DEV Community
dev.to > vmodal_ai > ros-2-qos-profiles-reliable-vs-best-effort-robot-communication-1cph

ROS 2 QoS Profiles: Reliable vs Best-Effort Robot Communication

1+ day, 12+ hour ago   (135+ words) Robot systems continuously exchange data with very different requirements. A dropped camera frame is usually acceptable. A dropped emergency command may not be. ROS 2 Quality of Service (QoS) lets you express these requirements. Best effort prioritizes timely delivery and may…...

DEV Community
dev.to > vmodal_ai > visual-inertial-odometry-for-autonomous-robots-2122

Visual-Inertial Odometry for Autonomous Robots

1+ day, 12+ hour ago   (142+ words) A robot needs to estimate how it moves through the world. GPS is unavailable indoors, wheel odometry can slip, and LiDAR may not always be available. Visual-Inertial Odometry (VIO) combines cameras and IMUs to estimate motion. A camera gives rich…...

DEV Community
dev.to > vmodal_ai > building-global-and-local-path-planners-for-autonomous-robots-438o

Building Global and Local Path Planners for Autonomous Robots

1+ day, 12+ hour ago   (204+ words) Autonomous navigation is not just about finding a route from A to B. A robot must plan a useful route through a map and continuously adapt that route to obstacles, other robots, people, and changes in its environment. A practical navigation…...

DEV Community
dev.to > vmodal_ai > building-a-real-time-slam-system-for-mobile-robots-4clb

Building a Real-Time SLAM System for Mobile Robots

1+ day, 12+ hour ago   (126+ words) A mobile robot must answer two questions: The challenge is that the robot needs the map to localize while also needing localization to build the map. The right sensor combination depends on the environment. The backend can represent the robot…...

DEV Community
dev.to > vmodal_ai > 3d-object-detection-for-physical-ai-applications-1i37

3D Object Detection for Physical AI Applications

1+ day, 12+ hour ago   (152+ words) A robot needs more than image classification. It needs to know: 3D object detection answers these questions in physical space. A 3D bounding box can contain: LiDAR naturally provides 3D geometry. A typical pipeline is: Challenges include sparse points and computational cost. A…...

DEV Community
dev.to > vmodal_ai > implementing-a-and-rrt-motion-planning-for-robotics-48d9

Implementing A* and RRT Motion Planning for Robotics

1+ day, 12+ hour ago   (72+ words) The planner explores promising cells while avoiding blocked cells. Instead of systematically exploring grid cells, it samples points and gradually grows a tree. A typical loop is: Basic RRT can produce inefficient paths. For a robotic arm, a state may…...

DEV Community
dev.to > vmodal_ai > building-a-high-performance-robot-communication-system-with-dds-3ge1

Building a High-Performance Robot Communication System with DDS

1+ day, 12+ hour ago   (175+ words) Modern robots may have dozens of processes distributed across CPUs, edge computers, and embedded devices. ROS 2 uses DDS (Data Distribution Service) as its underlying communication technology. Understanding DDS helps you design robot systems that remain responsive as message traffic grows....

DEV Community
dev.to > vmodal_ai > model-predictive-control-for-real-time-robot-navigation-14j

Model Predictive Control for Real-Time Robot Navigation

1+ day, 12+ hour ago   (172+ words) A path planner tells a robot where it should go. A controller determines how the robot should move to follow that path. Model Predictive Control (MPC) repeatedly predicts future behavior and chooses control inputs that optimize a short horizon. The…...