Papers for

robotics system integrators

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Distributed control enables drone swarms to safely form patterns

Distributed Stochastic Optimal Control for Pattern-Oriented Swarms

Abstract: While offering significant promise for diverse applications, pattern-oriented swarms encounter multifaceted challenges in geometric control, self-organization, and safe navigation through dynamic environments. In this paper, we present a GRF-based stochastic optimal control framework to address these challenges within a unified probabilistic architecture. By extending the GRF into the temporal domain, the proposed framework casts collective coordination as a Bayesian inference task, enabling swarms to accommodate environmental uncertainty, satisfy non-convex constraints, and reconcile heterogeneous dynamics across diverse platforms. We develop an uncertainty- and safety-aware collision avoidance module for navigation in the presence of stochastic obstacle motion. The unscented transform is employed to propagate state uncertainty for both dynamic obstacles and neighboring agents, yielding principled confidence bounds for collision avoidance. In addition, density-guided pattern control is introduced, which encodes geometric patterns as implicit density fields. This representation decouples pattern specification from explicit agent-to-target assignments, thereby facilitating intrinsic self-healing and elastic reconfiguration in a distributed manner. The proposed framework is extensively evaluated through Monte Carlo simulations across diverse scenarios. Its model-agnostic nature is demonstrated on both quadrotor and fixed-wing UAV swarms, highlighting its generalizability across platforms with heterogeneous dynamics. Finally, the efficacy and robustness of the proposed method are validated through indoor experiments with a 15-quadrotor swarm and outdoor deployments involving 4 custom-built autonomous quadrotors. These experiments substantiate the proposed framework's capacity to maintain reliable geometric pattern transitions and safety-aware navigation within real-world environments.

Fri 11 SeptRobotics
The gist
Controlling groups of drones to fly in specific shapes is tricky because they need to avoid bumping into each other and moving obstacles, even when conditions change. The authors created a mathematical framework that helps drone swarms plan their movements probabilistically, letting them handle uncertainty and obstacles safely. Their method lets the drones form and keep patterns without assigning specific spots to each drone, allowing the group to heal itself if something goes wrong. They tested this approach both in computer simulations and real drone flights, showing it works well indoors and outdoors with different types of drones.
Open 2609.12959v1

Efficient and robust point cloud matching in low-overlap scene scans

Spectral Consistency-Guided Multiview Point Cloud Registration for Low-Overlap Scenes

Abstract: Multiview point cloud registration is particularly challenging in low-overlap scenes, where reliable correspondences are limited and incorrect pairwise transformations can affect global pose estimation. In addition, registering all scan pairs is computationally expensive because many pairs provide weak geometric information. To address these problems, we propose GMPCR, a non-learning-based spectral consistency-guided framework for efficient and robust multiview point cloud registration. GMPCR builds a refined second-order compatibility structure from initial correspondences and uses its dominant spectral response to evaluate both correspondence reliability and scan-pair confidence. This allows unreliable correspondences to be filtered and informative scan pairs to be selected before relative transformation estimation, leading to a sparse pose graph and reduced pairwise registration cost. For each retained scan pair, maximal-clique-based hypothesis generation is used to estimate reliable relative transformations. The resulting pose graph is further refined by an adaptive history-aware synchronization scheme, in which the effect of residual history is adjusted according to changes in the global rotation residual. A recovery mechanism also allows down-weighted edges to regain confidence when their global consistency improves. Experiments on 3DMatch, 3DLoMatch, ScanNet, and ETH demonstrate the effectiveness of GMPCR. It achieves registration recalls of 97.2% and 89.6% on 3DMatch and 3DLoMatch, respectively, while maintaining competitive performance on ScanNet and ETH. The results show that GMPCR provides a favorable balance among registration accuracy, robustness to low overlap, and computational efficiency. The code is publicly available at https://github.com/swccj/gmpcr.

Fri 11 SeptComputer Vision and Pattern Recognition
The gist
Matching 3D scans from different views can be hard when they barely overlap because it's tough to find common points. The authors developed a method called GMPCR that picks the most trustworthy matches and scan pairs using a special math technique involving spectra. This helps reduce errors and speeds up matching by ignoring less useful scan pairs. Their approach works well on various real-world datasets, improving the accuracy and efficiency of aligning multiple 3D scans.
Open 2609.12417v1

Automated 3d camera measures thickness of bioprinted tissue constructs

An Automated Thickness Evaluation Procedure Using an Integrated Structured Light 3D Camera in a Robotic Bioprinting Framework

Abstract: Bioprinting is emerging as a tissue engineering technique to replace common treatment methods for large scale injuries. While thickness of the BioPrinted Constructs (BPCs) have shown to be of importance in the cell maturation and integration, the literature lacks a robust, automated, and quantitative method for measuring these metrics. In this paper, we propose a fully automated vision-based method for measuring the thickness of the BPCs with complex geometries. Leveraging the point cloud and RGB images of a structured light 3D camera, our proposed method performs an image-based segmentation for delineating the BPCs from the RGB images, accompanied by novel geometry-based thickness measurement algorithms performed on the point cloud scans. These algorithms combine the segmentation mask with the robot's forward kinematics data and a 3D point cloud scan to precisely measure the aforementioned metrics for complex-shaped BPCs. The proposed method was evaluated in simulation and experimental studies. In simulation studies, the algorithms were used to measure the thickness of some virtually created BPCs with known thickness. The comparison between the measured and true thicknesses demonstrates the high accuracy of the proposed method, achieving mean absolute errors between 0.025 mm and 0.057 mm in simulation at a spatial resolution of 0.1 mm x 0.1 mm per pixel. Furthermore, we successfully deployed the algorithms on our robotic bioprinting setup utilizing a structure light 3D camera, where complex patterns were printed and the developed methods utilized to accurately measure the thickness of printed BPCs.

Thu 10 SeptRobotics
The gist
Measuring how thick bioprinted tissues are is important for growing cells properly, but current methods lack precision and automation. This paper presents a fully automated way to measure the thickness of tissue shapes made by bioprinters using a 3D camera that scans the surface and color images to detect the tissue boundaries. The authors combine image segmentation and robot data with 3D point clouds to get very accurate thickness measurements even for complex shapes. They tested their method in virtual simulations and on real bioprinted samples, achieving errors below 0.06 millimeters.
Open 2609.12206v1

Robot learns to insert bending rods precisely with world model guidance

RodForesight: A World Model Enhanced Diffusion Policy for Slender and Material Agnostic Rod Insertion

Abstract: Slender rod insertion arises in precision manufacturing, where millimetre scale diameter and tight clearances demand accurate perception and control. Conventional peg-in-hole methods assume a rigid object whose tip pose is fixed relative to the gripper. This assumption breaks down for a high aspect ratio rod, which can bend during manipulation, making its tip motion dependent on the rod configuration, grasp, material properties, and contact. We present RodForesight, a learning framework that factorises the task into two stages: 1) coarse approaching, which uses visual servoing to map diverse initial configurations into a compact near hole hand-off region; and 2) predictive insertion, which performs fine alignment and completes the insertion. It is worth noting that the two stages can be wrapped into an end-to-end design. During insertion, a diffusion policy generates candidate action chunks, while an action conditioned world model predicts their effects on rod-hole alignment. This pre-execution evaluation enables RodForesight to select the best action chunk based on predicted tilt and radial errors before execution. Experiments investigate the performance of different stages and the end-to-end setting, where RodForesight improves the success rate from 88.9% to 96.7%, compared to baseline methods such as diffusion policy.

Thu 10 SeptRobotics
The gist
Inserting thin, bendy rods into tight spaces is hard because the rod's tip can move unpredictably when it bends. This paper presents RodForesight, a method that first moves the rod close to the hole using cameras and then carefully uses a special AI approach to predict and correct rod alignment. This method tries out multiple possible moves before picking the best one, leading to more successful insertions than earlier techniques. The authors show that this approach improves success rates on the task by combining vision, prediction, and decision-making.
Open 2609.12103v1

Efficient system meets latency needs for robot factories serving many robots

Efficient Vision-Language-Action Management and Serving for Robot Factories

Abstract: Vision-Language-Action (VLA) models show high robotic manipulation capabilities via a two-stage design: a Vision-Language Model (VLM) stage followed by an Action Diffusion Transformer (ADiT) stage. Since robots must meet strict Service-Level Objectives (SLOs) for safety, VLA inference is inherently latency-critical. Meeting these SLOs requires high-end GPUs, yet weight, cost, and power constraints preclude integrating such GPUs on-robot. Prior works offload VLA inference to edge servers that serve many robots on VLA models. However, current VLA systems lack support for multi-request, multi-model execution on a multi-GPU server under SLOs, while existing serving systems for multi-stage models are optimized for throughput and stage disaggregation across separate GPUs, which are ill-suited for the millisecond-scale stages of VLA models. We design Robion, the first VLA serving and management system for multi-robot, multi-model requests on multi-GPU edge servers that meets SLOs. Our serving engine disaggregates the VLM and ADiT stages within a GPU via two streams, dynamically restricting the SMs on VLM stream so ADiT always finds SMs to run alongside it, and co-locates multiple models by sharing these streams across them, prioritizing requests by least remaining SLO time. Our management engine enables flexible model placements on multi-GPU servers, and integrates an intelligent traffic controller that maximizes per-model batching under the chosen placement while bounding each GPU's load to meet SLOs. For individual models, Robion serves on average 6.7$\times$ and 1.5$\times$ higher robot load within 98% SLO attainment over vLLM-Omni, the most widely used multi-stage serving system, and Monolithic, which runs VLM and ADiT as a single pipeline, respectively. In a large-scale experiment of serving 8 different models on a 4-GPU server, Robion can serve up to 64 robots within 98% SLO attainment.

Thu 10 SeptDistributed, Parallel, and Cluster ComputingHardware ArchitectureMachine Learning
The gist
Robots that see, understand, and act based on language need fast and reliable computing to work safely. The authors created Robion, a system that manages complex robot tasks on servers with multiple GPUs, making sure requests from many robots are handled quickly and within safety limits. This system cleverly shares resources inside GPUs and organizes tasks to keep everything running smoothly, allowing many robots to operate simultaneously without delays. Robion outperforms older methods in speed and reliability when serving multiple robot models at once.
Open 2609.12075v1

Learning agent control improves vehicle performance and safety

Learning Agent-based Model Predictive Control for Holistic Vehicle Performance

Abstract: Agent-based model predictive control (AMPC) has recently been proposed as a distributed scheme that collaborates with all agents to achieve optimal holistic performance. However, its optimality highly depends on the prediction accuracy that requires all agents or their contributions to be known, which is too idealistic for actual implementation. This research proposes a novel practical hybrid control scheme - learning agent-based MPC (LAMPC), combining the model-based AMPC approach and data-based learning methods to improve the holistic vehicle performance for multi-agent systems. The Gaussian process regression (GPR) enhanced by an online data management strategy serves as the learning core to predict unknown contributions. A novel multi-step prediction mechanism leverages the GPR learning potential along the horizon. The predicted mean, representing the learned unknown contributions, completes the system model in the MPC for more accurate control. Meanwhile, a stochastic framework is formulated to guarantee control safety and feasibility using soft chance constraints based on the prediction variance. Both simulations and experiments show that, with the learning capability, LAMPC outperforms the traditional AMPC. LAMPC can achieve higher tracking performance in well-learned scenarios and always guarantee constraint satisfaction even in less-learned scenarios. Moreover, the proposed hybrid control scheme is efficient for real-time implementation and is flexible to any control agent topology.

Thu 10 SeptRobotics
The gist
Controlling vehicles with many independent parts working together is hard because it's difficult to predict how each part will behave. The researchers propose a new control method that combines traditional mathematical models with machine learning to better predict unknown behaviors. This approach uses data collected while the vehicle operates to improve predictions and control safety, even when not all behaviors are well understood. Their method performs better than older ones in tests, ensuring the vehicle follows commands accurately and safely.
Open 2609.11871v1

Framework improves robot cooperation by sensing human intent accurately

A Confidence-Aware Multimodal Fusion Framework for Industrial Human-Robot Collaboration

Abstract: A confidence-aware multimodal fusion framework (CAMF) is proposed to realize reliable human intention prediction for industrial human-robot collaboration. This framework fuses four heterogeneous modalities including object 6D pose, gaze, skeletal motion and IMU-based hand motion. It embeds a confidence-trend-driven dynamic fusion mechanism into BiLSTM to adaptively balance bidirectional temporal features according to real-time modality reliability. A confidence-guided balanced learning strategy combined with a confidence freezing mechanism is further adopted to adjust network gradients dynamically, suppress noise from low-quality modalities and mitigate cross-modal learning bias. A physical platform based on the UR3 collaborative robot is built for experimental validation. Comparative results show that the proposed method reaches an intention recognition accuracy of 91.86% and outperforms existing multimodal fusion approaches in overall performance and stability. It also maintains satisfactory accuracy under low light and partial occlusion interference. In practical assembly tasks, the framework enables proactive and stable human-robot cooperation with strong environmental adaptability.

Wed 9 SeptRoboticsHuman-Computer Interaction
The gist
Industrial robots need to understand what humans want to do to help safely and efficiently. This work introduces a system that combines different signals like hand movement, gaze, and object position to predict human intentions better. The system also checks which signals are reliable in real time and adjusts how it uses them. Tests on a real robot show it works well even in tricky conditions like poor lighting or when some views are blocked. This makes human and robot teamwork smoother and more adaptable in factory settings.
Open 2609.10339v1

Depth based vision lidar place recognition improves robot localization

DXPR: Depth-Based Vision-LiDAR Cross-Modal Place Recognition Using Vision Foundation Models

Abstract: We present DXPR, a depth-based cross-modal place recognition (CMPR) framework that uses vision foundation models (VFMs) to match monocular camera queries against a LiDAR map without modality-specific encoders. This enables robots and autonomous vehicles to robustly localize using only cameras within pre-built LiDAR maps, even under severe seasonal, weather, and illumination changes. The key idea is to convert both camera images and LiDAR scans into a unified depth image representation so that a single VFM backbone with an aggregation head can learn modality-invariant global descriptors. To make pairwise metric learning faithful to scene geometry, we introduce a geometry-aware overlap miner: after cross-modal scale alignment of camera and LiDAR depth, we forward-warp measurements between views to compute a pixel-level overlap score. This score relabels ambiguous pairs and adaptively modulates the positive margin in a multi-similarity loss to avoid overfitting on weakly overlapping views. Extensive experiments on KITTI odometry and Boreas demonstrate strong performance and robustness across seasons, weather, and day/night. On KITTI, DXPR achieves near-perfect Recall@1 on most sequences and outperforms prior CMPR baselines. On Boreas, DXPR achieves intra-sequence performance on par with a strong single-modal baseline (DINOv2-SALAD), while showing clear improvements in the more challenging inter-sequence setting. Compared with RangeBEV, our method consistently performs better in both intra- and inter-sequence evaluations, demonstrating robustness under diverse seasonal and illumination changes.

Tue 8 SeptComputer Vision and Pattern Recognition
The gist
Matching robot camera images to maps made from lidar data is challenging because cameras and lidar see the world differently. The authors designed a method that turns both camera pictures and lidar scans into similar depth images. This lets the same vision model understand both, helping robots localize better even when lighting, weather, or seasons change a lot. Their experiments show this approach works well on multiple datasets, beating previous methods.
Open 2609.09005v1

Humanoid robot workspaces improve by moving cameras with arms

Visible-Reachable Workspace for Perception-Aware Humanoid Design

Abstract: Workspace analysis measures where a robot can place its end effector. For visually guided manipulation, reachability alone is insufficient: a kinematically reachable target may not be visible in the specific pose required to reach it. The robot must then redirect its sensing or move its body to acquire a view, turning a perception limitation into additional motion. Existing humanoids largely inherit this limitation when copying human form factors. We introduce the visible-reachable workspace (VRW), a design-stage measure that conditions visibility on feasible reaching configurations and extends it to concurrent visibility of spatially separated work regions. We apply VRW by building a 31-DoF humanoid with independently actuated RGB-D cameras. On the same robot, camera articulation increases visible-reachable coverage from 38% to 97%. With actuated camera layouts, a second camera raises pairwise coverage from 0.45 to 0.95, while a third changes it only to 0.97. In a controlled two-target reach-and-grasp benchmark, our dual-actuated design reduces mean completion time by 17% and mechanical energy by 19% relative to the same robot with its cameras fixed. Hardware experiments demonstrate simultaneous observation and manipulation of front/back and left/right target pairs without torso reorientation. The results suggest that reachability becomes a more informative design quantity for perception-driven humanoid manipulation when it is evaluated together with the sensing configurations that make the reachable space observable. We will open-source all software and the humanoid hardware design. Our website is https://generalroboticslab.com/DukeHumanoidv2

Tue 8 SeptRobotics
The gist
Robots often need to see what they are reaching for to interact effectively, but just being able to reach something doesn’t mean the robot can see it well. The authors created a new way to measure where a robot can both see and reach targets, called visible-reachable workspace (VRW). They built a humanoid robot with movable cameras to test this idea, showing it could see and grab objects faster and use less energy than a robot with fixed cameras. This approach helps design robots that coordinate movement and perception better.
Open 2609.08905v1

Learning robot assembly from one human demonstration

State-of-the-Art in Learning-by-Demonstration with Passive Observation for Industrial Assembly Automation

Abstract: Learning-by-Demonstration (LbD) enables intuitive robot programming by capturing expert skills, which is crucial for agility in high-mix, low- volume manufacturing. This systematic literature review analyzes passive LbD for industrial assembly processes, focusing on the perception architecture and the generalization of the perceived demonstration. We specifically investigate one-shot approaches where only a single demonstration is required. The review evaluates how systems adapt to new assemblies using this limited data. We identify a shift towards object-centric perception, allowing learned primitives to be transferred to new product variants with minimal training.

Mon 7 SeptRobotics
The gist
Programming robots for complex factory tasks is hard and slow. This paper reviews ways to teach robots by simply watching a person do a task once. The authors highlight how new methods focus on recognizing the objects involved to help robots quickly learn variations of products. This approach allows more flexible and faster robot setup in factories that make many different items in small amounts.
Open 2609.07165v1