REVIEW 4 major objections 6 minor 4 cited by
Omni-Perception: Omnidirectional Collision Avoidance for Legged Locomotion in Dynamic Environments
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Omni-Perception claims the first end-to-end legged locomotion policy trained directly on raw LiDAR point clouds, achieving omnidirectional collision avoidance in dynamic 3D scenes.
desk verdict First raw-LiDAR end-to-end legged locomotion policy with real-world promise, but sim-to-real fidelity is asserted more than measured. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing component is PD-RiskNet, the Proximal-Distal Risk-Aware Hierarchical Network, a perception module that partitions each raw LiDAR frame into a proximal set of dense near-field points and a distal set of sparse far-field points. Each set is downsampled, ordered by spherical coordinates, and processed by its own gated recurrent unit, with the proximal unit receiving privileged height supervision during training. The resulting embeddings are concatenated with proprioceptive history and the velocity command, then passed to an MLP actor. A second mechanism is the sector-based avoidance velocity: the horizontal plane is divided into 36 angular sectors, each sector contributes a repulsive velocity whose magnitude decays exponentially with the distance of the nearest point in that sector, and the reward encourages tracking the command velocity plus this avoidance term.
What would settle it
Measure the perceptual gap by placing the same static scene in front of the real LiDAR and the simulator, computing the Chamfer distance between the two point clouds, then running the policy on a thin rod whose diameter is below the averaging kernel. If the Chamfer distance is large but the policy still transfers, or if the policy collides with thin rods that were clearly visible in simulation, the high-fidelity-transfer claim is weakened.
Extended reading notes
Core claim
The central claim is that end-to-end policies can consume raw LiDAR point clouds directly and achieve omnidirectional collision avoidance in dynamic 3D environments, something depth-camera pipelines and map-based methods do not deliver. The discovery is that a proximal-distal hierarchical processing scheme makes this tractable: dense near-field points are downsampled by farthest-point sampling, sparse far-field points by averaging, and each stream is fed to a separate gated recurrent unit trained with privileged height supervision. Combined with a sector-based avoidance velocity in the reward, this yields a reactive policy that tracks velocity commands while pushing away from nearby obstacles in all directions. The paper reports real-robot success rates of 100 percent on static obstacles, 70 percent on aerial obstacles, 83 percent on small obstacles, and 90 percent on moving humans, compared to zero for the native system on aerial and human obstacles.
Load-bearing premise
The whole sim-to-real transfer rests on the assumption that the simulated LiDAR scans faithfully reproduce the real sensor's noise, scan pattern, and self-occlusion; the paper supports this with a single qualitative side-by-side comparison and domain randomization, but offers no quantitative error metrics.
Editorial extensions
If this is right
- If the claim holds, intermediate representations like elevation maps become optional for reactive legged navigation, since raw LiDAR provides lighting-invariant 3D awareness at control frequency.
- The 70 percent aerial and 90 percent moving-human success rates imply that end-to-end LiDAR policies can handle threats that proprioception-only systems miss entirely.
- The LiDAR simulator's speed, more than an order of magnitude faster than one commercial baseline on static scenes, makes large-scale parallel training of perception-locomotion policies practical.
- The same policy transfers to a real robot without additional adaptation, indicating that zero-shot sim-to-real transfer is feasible for point-cloud-based legged locomotion.
Reading between the lines
- The proximal-distal split is a generic way to handle non-uniform point density; it could be applied to other irregular point-cloud streams such as UAV navigation or manipulation where near-field detail matters more than far-field density.
- A quantitative benchmark of LiDAR simulator fidelity, such as Chamfer distance or occupancy IoU between simulated and real scans, would let the community separate perception gap from control policy quality; the current paper only offers a qualitative comparison.
- Extending the paper's failure analysis, adding semantic segmentation could address the dense-grass failure case, since geometric features alone misclassify vegetation as danger.
- The avoidance-velocity reward is a reactive heuristic; a learned or predictive variant might improve behavior in corridors where the robot is forced to walk close to obstacles.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Omni-Perception, an end-to-end reinforcement learning framework for legged locomotion that consumes raw spatio-temporal LiDAR point clouds through a new perception module, PD-RiskNet, and outputs joint position targets. The method partitions each scan into proximal and distal clouds, processes them with FPS/GRU and average-downsampling/GRU pathways, and trains with a reward that combines velocity tracking with a hand-designed sector-based avoidance velocity and a LiDAR distance-maximization term. The authors also contribute a custom GPU-accelerated LiDAR simulator and report a simulation ablation plus real-robot trials across static, aerial, small, and moving-human obstacle scenarios.
Significance. If the sim-to-real transfer is robust, the paper would be a meaningful step toward using direct 3D LiDAR point clouds in learned legged locomotion, avoiding intermediate elevation maps and depth-camera limitations. The custom LiDAR simulation toolkit with fast parallel raycasting and cross-platform support is a practical contribution, as is the public code repository. The real-robot demonstrations show that a raw-point-cloud policy can produce reactive avoidance behaviors that the native Unitree system lacks. However, the quantitative evidence for the central zero-shot transfer claim is currently thinner than the narrative suggests: the LiDAR fidelity evaluation is qualitative, the real-world results are point estimates from 30 trials without statistical support, and the paper's own limitations predict the observed small-obstacle deficit. The significance is therefore real but conditional on stronger validation.
major comments (4)
- [4.1] The LiDAR simulator fidelity claim, which underpins the zero-shot sim-to-real transfer result, rests on a single qualitative side-by-side comparison in Figure 4. No quantitative metric is reported for per-ray range error, point-cloud recall, scan-pattern coverage, or self-occlusion between the physical Livox Mid-360 and the simulator. This is load-bearing because the policy does not consume raw scans directly: Section 3.3.1 applies FPS, average downsampling, and spherical sorting before the GRUs, so any bias in the simulated scan propagates into the policy observation. The paper's own Limitations section and Figure 8 state that averaging the distant point cloud destroys the features of very small or thin objects, and Table 4 shows exactly that class underperforming (83% vs. 100% for the non-perceptive Unitree system). Please add a quantitative sim-vs-real fidelity comparison or a closed-loop sim-vs-real benchmark, and discuss how the distal downsampling interacts with the fidelity claim.
- [4.4] The real-world success rates in Table 4 are point estimates from only 30 trials per scenario, with no confidence intervals, no statistical significance tests, and no description of the trial protocol (obstacle dimensions, approach speeds, initial configurations, or success criteria). For example, 21/30 successes for aerial obstacles has an exact 95% confidence interval of roughly 51% to 85%, which is much wider than the 70% point estimate suggests. Please report confidence intervals or additional repetitions, and specify the trial protocol so the reader can assess whether the differences are robust and reproducible.
- [4.3] In Table 3, the reported success rates and collision rates are not mutually exclusive and sum to more than 100% for several rows (e.g., FPS+MLP: 33.3% + 93.3% = 126.6%; Ours: 76.7% + 56.7% = 133.4%). If the collision rate is the fraction of episodes with at least one collision, this must be stated explicitly; if a trial can both succeed and collide, the current presentation makes it difficult to interpret the ablation's advantage. Please clarify the definition and, ideally, report a single outcome per trial (success, collision, timeout) or a confusion-style breakdown.
- [3.3 / Appendix A-B] Several parameters needed to reproduce PD-RiskNet and the reward are missing. In particular, the vertical angle threshold θ in Section 3.3.1, the FPS sample count, the distal downsampling factor, the distance cap d_max, the avoidance coefficient α_avoid, the velocity-tracking weight β_va, and the privileged-height supervision loss or weight are not specified. Nhist=10 appears only in Appendix B, and dthresh=1m and Nsec=36 appear in the main text. Please provide a complete hyperparameter table or list all numeric values in one place, otherwise the core architecture cannot be reimplemented from the paper alone.
minor comments (6)
- [1] In the contribution list on page 2, item 2 is incomplete: '2. Novel LiDAR Perception Network (PD-RiskNet):' is followed by no description. Please complete the sentence.
- [Figure 1 caption] The caption contains a typo, 'Omni-Perceptio', which should read 'Omni-Perception'.
- [4.1] The sentence 'You can find more lidar model scan patterns in the Appendix.??' contains a stray '??' placeholder and should be completed or removed.
- [4.4] Please clarify which robot platform(s) were used in the real-world experiments: Figure 2 shows the Unitree Go2, while Figure 4 shows the Unitree G1. The text should state the exact hardware used for each reported trial.
- [3.3.1 / B.1] The privileged-height supervision is mentioned as a training signal, but no loss function, prediction target, or loss weight is described. Please specify how this supervision is applied.
- [3.3.2] The reward function already contains a hand-designed LiDAR-based avoidance velocity, while the paper claims that the policy learns directly from raw point clouds. This is not circular, but the relationship should be stated explicitly: the observation is raw, yet the reward injects a LiDAR-derived prior, so the learned perception is shaped by that prior. Please add a clarifying sentence.
Circularity Check
No significant circularity: real-world validation and independent evidence support the core claims.
full rationale
The paper's derivation chain is not circular. The policy is trained with rewards that use LiDAR sector distances (r_vel_avoid with V_avoid computed from sector minima) and ray-distance maximization (r_rays), but these are training objectives, not reported predictions. The paper's evidence for avoidance is real-world deployment on a physical Unitree robot with a physical Livox Mid-360 sensor (Table 4), which is not forced by construction from the simulator or the reward equations. The LiDAR simulator fidelity validation (Sec. 4.1) is qualitative and could be stronger, but that is an evidence-strength concern, not circularity. The reward design does handcraft the avoidance direction (a classical potential-field-like term), yet the policy must still learn to track it through raw point-cloud features and transfer that behavior to a real robot; the success rate on real obstacles is an independent test. Self-citations appear only in passing related-work and manipulation contexts and are not load-bearing for the central claim. Finally, the Limitations section explicitly predicts that averaging distant point clouds will destroy features of very small objects, and Table 4 shows 83% success on small obstacles; this consistency is an honest acknowledgment of a design trade-off, not a circular step. No equation in the paper defines the claimed result in terms of the inputs, and no fitted parameter is renamed as a prediction.
Assumptions & free parameters
free parameters (11)
- Vertical angle threshold theta =
Not specified
- FPS sample count for proximal cloud =
Not specified
- Distal downsampling factor =
Not specified
- Sector count Nsec=36 =
36
- Avoidance threshold dthresh=1m =
1.0 m
- Avoidance exponential coefficient alpha_avoid =
Not specified
- Velocity tracking weight beta_va =
Not specified in the main text; weight for the reward is 2
- Distance cap dmax for ray reward =
Not specified
- Proximal GRU embedding dimension =
187
- Distal GRU embedding dimension =
64
- Nhist=10 frames =
10
assumptions (5)
- standard math Standard reinforcement learning assumptions: MDP with Markovian state, PPO with an infinite-horizon discounted return.
- domain assumption LiDAR point cloud input contains enough information for collision avoidance.
- domain assumption The reward function encodes the desired behavior of avoiding obstacles and following commands.
- domain assumption Sim-to-real transfer works because the simulator models the LiDAR and physics closely enough.
- domain assumption The proprioceptive state and physics simulator correctly model the Unitree G1 robot dynamics.
invented entities (4)
-
PD-RiskNet (Proximal-Distal Risk-Aware Hierarchical Network)
independent evidence
-
New LiDAR simulation toolkit with fast raycasting and realistic noise
independent evidence
-
Avoidance velocity V_avoid as a reward term
independent evidence
-
Privileged height supervision signal
independent evidence
Cite this review
Pith. "Pith review of Omni-Perception: Omnidirectional Collision Avoidance for Legged Locomotion in Dynamic Environments." pith.science (2026). https://pith.science/paper/X5ES7BET
@misc{pith2026250519214,
author = {Pith},
title = {Pith review of: Omni-Perception: Omnidirectional Collision Avoidance for Legged Locomotion in Dynamic Environments},
year = {2026},
howpublished = {\url{https://pith.science/paper/X5ES7BET}},
note = {Machine review of arXiv:2505.19214}
}
read the original abstract
Agile locomotion in complex 3D environments requires robust spatial awareness to safely avoid diverse obstacles such as aerial clutter, uneven terrain, and dynamic agents. Depth-based perception approaches often struggle with sensor noise, lighting variability, computational overhead from intermediate representations (e.g., elevation maps), and difficulties with non-planar obstacles, limiting performance in unstructured environments. In contrast, direct integration of LiDAR sensing into end-to-end learning for legged locomotion remains underexplored. We propose Omni-Perception, an end-to-end locomotion policy that achieves 3D spatial awareness and omnidirectional collision avoidance by directly processing raw LiDAR point clouds. At its core is PD-RiskNet (Proximal-Distal Risk-Aware Hierarchical Network), a novel perception module that interprets spatio-temporal LiDAR data for environmental risk assessment. To facilitate efficient policy learning, we develop a high-fidelity LiDAR simulation toolkit with realistic noise modeling and fast raycasting, compatible with platforms such as Isaac Gym, Genesis, and MuJoCo, enabling scalable training and effective sim-to-real transfer. Learning reactive control policies directly from raw LiDAR data enables the robot to navigate complex environments with static and dynamic obstacles more robustly than approaches relying on intermediate maps or limited sensing. We validate Omni-Perception through real-world experiments and extensive simulation, demonstrating strong omnidirectional avoidance capabilities and superior locomotion performance in highly dynamic environments.
Figures
Figures from the paper (5 more)
Forward citations
Cited by 4 Pith papers
-
CBF-RL: Safety Filtering Reinforcement Learning in Training with Control Barrier Functions
Training RL policies with a closed-form CBF safety filter plus CBF reward lets a Unitree G1 humanoid avoid obstacles and climb stairs without a runtime safety filter.
-
MM-Nav: Multi-View VLA Model for Robust Visual Navigation via Multi-Expert Learning
A four-camera VLA navigation model trained by distilling multiple RL experts achieves strong simulation performance and qualitative real-world transfer.
-
End-to-End Humanoid Robot Safe and Comfortable Locomotion Policy
An end-to-end humanoid locomotion policy maps raw LiDAR point clouds to motor commands using P3O with CBF-inspired safety costs and comfort rewards, with sim-to-real tests on a Unitree G1.
-
Humanoid Occupancy: Enabling A Generalized Multimodal Occupancy Perception System on Humanoid Robots
A humanoid-specific multimodal occupancy perception system with a new dataset, sensor layout, and a fusion network that claims state-of-the-art results on its own benchmark.
Reference graph
Works this paper leans on
-
[1]
A. Elfes. Using occupancy grids for mobile robot perception and navigation. Computer, 22 (6):46–57, 1989
work page 1989
-
[2]
J. Lee, J. Hwangbo, L. Wellhausen, V . Koltun, and M. Hutter. Learning quadrupedal locomo- tion over challenging terrain. Science robotics, 5(47):eabc5986, 2020
work page 2020
-
[3]
T. He, C. Zhang, W. Xiao, G. He, C. Liu, and G. Shi. Agile but safe: Learning collision-free high-speed legged locomotion. In Robotics: Science and Systems (RSS) , 2024
work page 2024
-
[4]
Z. Xu, B. Chen, X. Zhan, Y . Xiu, C. Suzuki, and K. Shimada. A vision-based autonomous uav inspection framework for unknown tunnel construction sites with dynamic obstacles. IEEE Robotics and Automation Letters, 8(8):4983–4990, 2023
work page 2023
-
[5]
D. Kim, D. Carballo, J. Di Carlo, B. Katz, G. Bledt, B. Lim, and S. Kim. Vision aided dy- namic exploration of unstructured terrain with a small-scale quadruped robot. In 2020 IEEE International Conference on Robotics and Automation (ICRA) , pages 2464–2470, 2020. doi: 10.1109/ICRA40945.2020.9196777
arXiv 2020
-
[6]
T. Dudzik, M. Chignoli, G. Bledt, B. Lim, A. Miller, D. Kim, and S. Kim. Robust autonomous navigation of a small-scale quadruped robot in real-world environments. In 2020 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages 3664–3671. IEEE, 2020
work page 2020
-
[7]
G. B. Margolis and P. Agrawal. Walk these ways: Tuning robot control for generalization with multiplicity of behavior. Conference on Robot Learning, 2022
work page 2022
-
[8]
G. Margolis, G. Yang, K. Paigwar, T. Chen, and P. Agrawal. Rapid locomotion via reinforce- ment learning. In Robotics: Science and Systems , 2022
work page 2022
Show all 63 references
-
[9]
Hwangbo, J
J. Hwangbo, J. Lee, A. Dosovitskiy, D. Bellicoso, V . Tsounis, V . Koltun, and M. Hutter. Learn- ing agile and dynamic motor skills for legged robots. sci. Robotics, 4:26, 2019
2019
-
[10]
Rudin, D
N. Rudin, D. Hoeller, P. Reist, and M. Hutter. Learning to walk in minutes using massively parallel deep reinforcement learning. InConference on Robot Learning, pages 91–100. PMLR, 2022
2022
-
[11]
Kumar, Z
A. Kumar, Z. Fu, D. Pathak, and J. Malik. Rma: Rapid motor adaptation for legged robots. 2021
2021
-
[12]
Z. Wang, Y . Jia, L. Shi, H. Wang, H. Zhao, X. Li, J. Zhou, J. Ma, and G. Zhou. Arm-constrained curriculum learning for loco-manipulation of a wheel-legged robot. In 2024 IEEE/RSJ Inter- national Conference on Intelligent Robots and Systems (IROS) , pages 10770–10776. IEEE, 2024
2024
-
[13]
Cheng, K
X. Cheng, K. Shi, A. Agarwal, and D. Pathak. Extreme parkour with legged robots. In 2024 IEEE International Conference on Robotics and Automation (ICRA) , pages 11443–11450. IEEE, 2024
2024
-
[14]
Kareer, N
S. Kareer, N. Yokoyama, D. Batra, S. Ha, and J. Truong. Vinl: Visual navigation and loco- motion over obstacles. In 2023 IEEE International Conference on Robotics and Automation (ICRA), pages 2018–2024. IEEE, 2023. 10
2023
-
[15]
Agarwal, A
A. Agarwal, A. Kumar, J. Malik, and D. Pathak. Legged locomotion in challenging terrains using egocentric vision. In Conference on robot learning, pages 403–415. PMLR, 2023
2023
-
[16]
Plagemann, S
C. Plagemann, S. Mischke, S. Prentice, K. Kersting, N. Roy, and W. Burgard. Learning predic- tive terrain models for legged robot locomotion. In 2008 IEEE/RSJ International Conference on Intelligent Robots and Systems , pages 3545–3552. IEEE, 2008
2008
-
[17]
Cheng, Y
A.-C. Cheng, Y . Ji, Z. Yang, Z. Gongye, X. Zou, J. Kautz, E. Bıyık, H. Yin, S. Liu, and X. Wang. Navila: Legged robot vision-language-action model for navigation. arXiv preprint arXiv:2412.04453, 2024
2024 arXiv
-
[18]
T. Miki, L. Wellhausen, R. Grandia, F. Jenelten, T. Homberger, and M. Hutter. Elevation map- ping for locomotion and navigation using gpu. In 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages 2273–2280. IEEE, 2022
2022
-
[19]
Li and J
Y . Li and J. Ibanez-Guzman. Lidar for autonomous driving: The principles, challenges, and trends for automotive lidar and perception systems. IEEE Signal Processing Magazine, 37(4): 50–61, 2020
2020
-
[20]
Y . Li, L. Ma, Z. Zhong, F. Liu, M. A. Chapman, D. Cao, and J. Li. Deep learning for lidar point clouds in autonomous driving: A review. IEEE Transactions on Neural Networks and Learning Systems, 32(8):3412–3432, 2020
2020
-
[21]
T. Ma, Z. Wang, J. Zhou, M. Wang, and J. Liang. Glover: Generalizable open-vocabulary affordance reasoning for task-oriented grasping. arXiv preprint arXiv:2411.12286, 2024
2024 arXiv
-
[22]
T. Ma, J. Zheng, Z. Wang, Z. Gao, J. Zhou, and J. Liang. Glover++: Unleashing the poten- tial of affordance learning from human behaviors for robotic manipulation. arXiv preprint arXiv:2505.11865, 2025
2025 arXiv
-
[23]
T. Ma, J. Zhou, Z. Wang, R. Qiu, and J. Liang. Contrastive imitation learning for language- guided multi-task robotic manipulation. arXiv preprint arXiv:2406.09738, 2024
2024 arXiv
-
[24]
J. Zhou, K. Ye, J. Liu, T. Ma, Z. Wang, R. Qiu, K.-Y . Lin, Z. Zhao, and J. Liang. Exploring the limits of vision-language-action manipulations in cross-task generalization. arXiv preprint arXiv:2505.15660, 2025
2025
-
[25]
J. Zhou, T. Ma, K.-Y . Lin, Z. Wang, R. Qiu, and J. Liang. Mitigating the human-robot domain discrepancy in visual pre-training for robotic manipulation. arXiv preprint arXiv:2406.14235, 2024
2024 arXiv
-
[26]
Y . Jia, G. Wang, Y . Dong, J. Wu, Y . Zeng, H. Lin, Z. Wang, H. Ge, W. Gu, K. Ding, et al. Discoverse: Efficient robot simulation in complex high-fidelity environments. arXiv preprint arXiv:2507.21981, 2025
2025 arXiv
-
[27]
C. D. Bellicoso, M. Bjelonic, L. Wellhausen, K. Holtmann, F. G ¨unther, M. Tranzatto, P. Fankhauser, and M. Hutter. Advances in real-world applications for legged robots. Journal of Field Robotics, 35(8):1311–1326, 2018
2018
-
[28]
Delmerico, S
J. Delmerico, S. Mintchev, A. Giusti, B. Gromov, K. Melo, T. Horvat, C. Cadena, M. Hutter, A. Ijspeert, D. Floreano, et al. The current state and future outlook of rescue robotics. Journal of Field Robotics, 36(7):1171–1191, 2019
2019
-
[29]
Rudin, D
N. Rudin, D. Hoeller, M. Bjelonic, and M. Hutter. Advanced skills by learning locomotion and local navigation end-to-end. In 2022 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), pages 2497–2503. IEEE, 2022
2022
-
[30]
Wisth, M
D. Wisth, M. Camurri, and M. Fallon. Vilens: Visual, inertial, lidar, and leg odometry for all-terrain legged robots. IEEE Transactions on Robotics, 39(1):309–326, 2022. 11
2022
-
[31]
Y . J. Ma, W. Liang, G. Wang, D.-A. Huang, O. Bastani, D. Jayaraman, Y . Zhu, L. Fan, and A. Anandkumar. Eureka: Human-level reward design via coding large language models.arXiv preprint arXiv:2310.12931, 2023
2023 arXiv
-
[32]
Zucker, N
M. Zucker, N. Ratliff, M. Stolle, J. Chestnutt, J. A. Bagnell, C. G. Atkeson, and J. Kuffner. Optimization and learning for rough terrain legged locomotion. The International Journal of Robotics Research, 30(2):175–191, 2011
2011
-
[33]
S. Choi, G. Ji, J. Park, H. Kim, J. Mun, J. H. Lee, and J. Hwangbo. Learning quadrupedal locomotion on deformable terrain. Science Robotics, 8(74):eade2256, 2023
2023
-
[34]
Hoeller, N
D. Hoeller, N. Rudin, D. Sako, and M. Hutter. Anymal parkour: Learning agile navigation for quadrupedal robots. Science Robotics, 9(88):eadi7566, 2024
2024
-
[35]
J. Lee, M. Bjelonic, A. Reske, L. Wellhausen, T. Miki, and M. Hutter. Learning robust au- tonomous navigation and locomotion for wheeled-legged robots. Science Robotics , 9(89): eadi9641, 2024
2024
-
[36]
Zhuang, Z
Z. Zhuang, Z. Fu, J. Wang, C. Atkeson, S. Schwertfeger, C. Finn, and H. Zhao. Robot parkour learning. arXiv preprint arXiv:2309.05665, 2023
2023 arXiv
-
[37]
Zhuang, S
Z. Zhuang, S. Yao, and H. Zhao. Humanoid parkour learning. arXiv preprint arXiv:2406.10759, 2024
2024 arXiv
-
[38]
Chane-Sane, J
E. Chane-Sane, J. Amigo, T. Flayols, L. Righetti, and N. Mansard. Soloparkour: Constrained reinforcement learning for visual locomotion from privileged experience. In Conference on Robot Learning (CoRL), 2024
2024
-
[39]
T. Miki, J. Lee, J. Hwangbo, L. Wellhausen, V . Koltun, and M. Hutter. Learning robust percep- tive locomotion for quadrupedal robots in the wild. Science robotics, 7(62):eabk2822, 2022
2022
-
[40]
Hoeller, L
D. Hoeller, L. Wellhausen, F. Farshidian, and M. Hutter. Learning a state representation and navigation in cluttered and dynamic environments. IEEE Robotics and Automation Letters , 6 (3):5081–5088, 2021
2021
-
[41]
Y . F. Chen, M. Liu, M. Everett, and J. P. How. Decentralized non-communicating multiagent collision avoidance with deep reinforcement learning. In 2017 IEEE international conference on robotics and automation (ICRA) , pages 285–292. IEEE, 2017
2017
-
[42]
P. Arm, G. Waibel, J. Preisig, T. Tuna, R. Zhou, V . Bickel, G. Ligeza, T. Miki, F. Kehl, H. Kol- venbach, et al. Scientific exploration of challenging planetary analog environments with a team of legged robots. Science robotics, 8(80):eade9548, 2023
2023
-
[43]
Wermelinger, P
M. Wermelinger, P. Fankhauser, R. Diethelm, P. Kr¨usi, R. Siegwart, and M. Hutter. Navigation planning for legged robots in challenging terrain. In 2016 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) , pages 1184–1189. IEEE, 2016
2016
-
[44]
H. Yin, X. Xu, S. Lu, X. Chen, R. Xiong, S. Shen, C. Stachniss, and Y . Wang. A survey on global lidar localization: Challenges, advances and open problems. International Journal of Computer Vision, 132(8):3139–3171, 2024
2024
-
[45]
Haddadin, A
S. Haddadin, A. De Luca, and A. Albu-Sch ¨affer. Robot collisions: A survey on detection, isolation, and identification. IEEE Transactions on Robotics, 33(6):1292–1312, 2017
2017
-
[46]
Gaertner, M
M. Gaertner, M. Bjelonic, F. Farshidian, and M. Hutter. Collision-free mpc for legged robots in static and dynamic scenes. In 2021 IEEE International Conference on Robotics and Au- tomation (ICRA), pages 8266–8272. IEEE, 2021
2021
-
[47]
Park, H.-D
J.-W. Park, H.-D. Oh, and M.-J. Tahk. Uav collision avoidance based on geometric approach. In 2008 SICE Annual Conference, pages 2122–2126. IEEE, 2008. 12
2008
-
[48]
Lin and S
M. Lin and S. Gottschalk. Collision detection between geometric models: A survey. In Proc. of IMA conference on mathematics of surfaces , volume 1, pages 602–608, 1998
1998
-
[49]
Chiu, J.-P
J.-R. Chiu, J.-P. Sleiman, M. Mittal, F. Farshidian, and M. Hutter. A collision-free mpc for whole-body dynamic locomotion and manipulation. In 2022 international conference on robotics and automation (ICRA), pages 4686–4693. IEEE, 2022
2022
-
[50]
Lindqvist, S
B. Lindqvist, S. S. Mansouri, A.-a. Agha-mohammadi, and G. Nikolakopoulos. Nonlinear mpc for collision avoidance and control of uavs with dynamic obstacles. IEEE robotics and automation letters, 5(4):6001–6008, 2020
2020
-
[51]
Q. Liao, Z. Li, A. Thirugnanam, J. Zeng, and K. Sreenath. Walking in narrow spaces: Safety- critical locomotion control for quadrupedal robots with duality-based optimization, 2023. URL https://arxiv.org/abs/2212.14199
2023 arXiv
-
[52]
Koptev, N
M. Koptev, N. Figueroa, and A. Billard. Reactive collision-free motion generation in joint space via dynamical systems and sampling-based mpc. The International Journal of Robotics Research, 43(13):2049–2069, 2024
2024
-
[53]
Z. Xu, X. Han, H. Shen, H. Jin, and K. Shimada. Navrl: Learning safe flight in dynamic environments. IEEE Robotics and Automation Letters , 10(4):3668–3675, 2025. doi:10.1109/ LRA.2025.3546069
2025
-
[54]
Y . Song, K. Shi, R. Penicka, and D. Scaramuzza. Learning perception-aware agile flight in cluttered environments, 2022. URL https://arxiv.org/abs/2210.01841
2022 arXiv
-
[55]
Makoviychuk, L
V . Makoviychuk, L. Wawrzyniak, Y . Guo, M. Lu, K. Storey, M. Macklin, D. Hoeller, N. Rudin, A. Allshire, A. Handa, and G. State. Isaac gym: High performance gpu-based physics simula- tion for robot learning, 2021
2021
-
[56]
Koenig and A
N. Koenig and A. Howard. Design and use paradigms for gazebo, an open-source multi-robot simulator. In 2004 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS) (IEEE Cat. No.04CH37566) , volume 3, pages 2149–2154 vol.3, 2004. doi:10.1109/ IROS.2004.1389727
2004 arXiv
-
[57]
G. Authors. Genesis: A universal and generative physics engine for robotics and beyond, December 2024. URL https://github.com/Genesis-Embodied-AI/Genesis
2024
-
[58]
Kulkarni, W
M. Kulkarni, W. Rehberg, and K. Alexis. Aerial gym simulator: A framework for highly parallelized simulation of aerial robots. IEEE Robotics and Automation Letters , 2025
2025
-
[59]
M. Macklin. Warp: A high-performance python framework for gpu simulation and graphics. https://github.com/nvidia/warp, March 2022. NVIDIA GPU Technology Conference (GTC)
2022
-
[60]
Hu, T.-M
Y . Hu, T.-M. Li, L. Anderson, J. Ragan-Kelley, and F. Durand. Taichi: a language for high- performance computation on spatially sparse data structures. ACM Transactions on Graphics (TOG), 38(6):201, 2019
2019
-
[61]
Lauterbach, M
C. Lauterbach, M. Garland, S. Sengupta, D. Luebke, and D. Manocha. Fast bvh construction on gpus. In Computer Graphics F orum, volume 28, pages 375–384. Wiley Online Library, 2009
2009
-
[62]
C. R. Qi, L. Yi, H. Su, and L. J. Guibas. Pointnet++: Deep hierarchical feature learning on point sets in a metric space. arXiv preprint arXiv:1706.02413, 2017
2017 arXiv
-
[63]
Schulman, F
J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms. arXiv preprint arXiv:1707.06347, 2017. 13 A Implementation Details A.1 Rewards Term Equation Weight Omni-Perception Rewards Velocity Tracking with Avoidance (rvel,avoid ) e...
2017 arXiv
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.