REVIEW 4 major objections 5 minor 29 references
Autonomous Exploration with Terrestrial-Aerial Bimodal Vehicles
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read The paper claims a fly-and-roll robot can choose its mode leg by leg so as to maximize explored information while still returning home within energy and time budgets, and supports the claim with simulations and a real deployment.
desk verdict BM-MCTS is a genuine new module for modality-aware exploration, but the simulation's resource metrics are generated by the same constant-power model the planner optimizes, so independent validation is needed. 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 central object is BM-MCTS, a Monte Carlo tree search extended from the classic selection-expansion-simulation-backpropagation loop. Each tree node is a viewpoint; each root-to-leaf branch is a candidate traverse sequence; the modality used to travel into a node is encoded by that node, so the search decides modality and sequencing at once. The reward per node splits into a process gain, a discounted average of visible frontier-voxel information, and a terminal cost built from exponential penalties on remaining energy and time, and the UCB rule balances exploration against exploitation when choosing children. A grouped TSP over frontier-cluster viewpoints, evaluated on a topological graph with an average-modality cost model, supplies the long-horizon estimate of what it takes to finish and return. The energy model behind the estimates is constant power per modality, $E(P_i,P_j,M)=P_M T(P_i,P_j,M)$, with flying power roughly seven times rolling power.
What would settle it
Measure the physical platform's battery draw across repeated stair ascents, edge crossings, and flat rolling in both modalities and compare integrated energy use with $E(P_i,P_j,M)=P_M T(P_i,P_j,M)$. If the actual energy per meter is not approximately constant per modality, or the aerial-to-terrestrial ratio departs materially from 7 on these maneuvers, then the planner's simulated remaining-energy estimates, and the modality switches they cause, would not carry over to hardware.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that resource-constrained exploration of a bimodal vehicle reduces to a search over viewpoint sequences in which every edge of the sequence carries a modality label, and that this joint search is tractable enough to run online. The BM-MCTS tree stores discounted information gain and exponential penalties for low remaining energy and time; a simulation phase estimates the cost of finishing all frontier clusters and returning home by solving a grouped traveling-salesman path on a topological graph, and a pruning rule stops expanding any branch that cannot return with nonnegative energy. The same framework is then coupled to a motion planner that perceives terrain online, builds separate maps for rolling and flying, and applies modality-specific dynamics. The reported consequence is that the robot's mode choices follow the budget: it flies while energy is plentiful and information is high, rolls when energy is scarce, and switches early enough to leave a safety margin for coming back.
Load-bearing premise
The plan's value rests on the assumption that a flying robot uses roughly seven times the power of the same robot rolling, at a constant per-second rate, for every maneuver including stairs and terrain edges; if real power draw varies with terrain or speed, the modality choices are optimized for a model rather than for the vehicle.
Editorial extensions
If this is right
- A single terrestrial-aerial vehicle can replace a multi-robot air-ground team for budgeted exploration, avoiding multi-robot SLAM, communication, and coordination overhead.
- Energy-limited missions can be planned to prioritize returning with data: the planner stops expanding branches whose remaining energy cannot cover the trip home.
- The modality ratio responds to the budget: tighter energy budgets push the vehicle toward rolling, tighter time budgets push it toward flying, and the planned margin leaves room for uncertainty.
- Computational cost stays manageable as the number of frontier clusters grows, because the topo-graph makes the simulation-phase path estimates cheap.
- The framework works with limited field-of-view sensors by passing the sensor FoV into viewpoint generation, so the same planner can be fitted to different perception hardware.
Reading between the lines
- The same BM-MCTS scheduling could be transferred to other hybrid mobility platforms, for example legged or hopping vehicles with two very different cost regimes, as long as the per-modality cost model is recalibrated; the paper does not test this transfer.
- The steep energy penalty versus mild time penalty encodes a particular mission priority: returning alive matters more than finishing on time. Swapping those priorities would change the branches the tree prunes, so the reported behaviors are partly a consequence of that design choice rather than of the search alone.
- A natural follow-up is to replace the constant-power energy model with terrain-aware consumption learned from onboard current sensing; the paper's own limitation section notes that resource estimates are locally myopic, and a terrain-sensitive model would address both that and the constant-power assumption.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a hierarchical autonomous exploration framework for terrestrial-aerial bimodal vehicles (TABVs). The system generates bimodal viewpoints for frontier clusters, uses an extended Monte Carlo Tree Search (BM-MCTS) to select viewpoint sequences and locomotion modalities under energy and time budgets, and integrates an improved bimodal motion planner with terrain perception. The claimed contribution is that the vehicle adapts its modality to satisfy E_all and T_all constraints, achieving higher coverage than aerial-only baselines under energy shortage and comparable performance under time shortage. The paper reports simulations in multi-story buildings, budget-adaptability experiments, and a single real-world deployment in an underground parking garage.
Significance. If the claims hold, the work is a valuable step toward practical deployment of TABVs for search-and-rescue-style exploration, where energy and time budgets matter. The system is complete: perception, viewpoint generation, decision making, motion planning, and control are integrated, with a real-world demonstration. The supplementary material provides useful ablations: comparisons against FUEL, UAV-only, UGV-only, and UGV-cross baselines, and an analysis of the topo-graph's computational advantage. The problem formulation in Eq. (1)-(2) is clear, and the BM-MCTS design with discounted information gain and exponential penalties is well motivated. However, the evaluation has important weaknesses: the simulation energy/time metrics are generated by the same constant-power model the planner optimizes, the real-world test has no baseline, and several key comparisons appear only in the supplementary rather than the main text.
major comments (4)
- [Sec. V-A, Eq. (4); Sec. VII-B] The constant-power energy model E(P_i, P_j, M) = P_M * T(P_i, P_j, M) is load-bearing: the remaining-energy and remaining-time values reported in Sec. VII-A and in the supplementary comparisons (Tabs. 1-2) are computed from the same model that BM-MCTS optimizes. The model ignores state-dependent power draw, such as stair climbing, edge transitions, and terrain resistance, even though the motion planner explicitly uses aerial primitives for such cases (supplementary Sec. 2, Fig. 4). The real-world experiment in Sec. VII-B reports a single run without a baseline, without independent battery measurements, and without comparing predicted versus measured segment consumption. As a result, the simulated modality-balancing behavior may be an artifact of the cost model rather than physical reality. I request either (a) independent validation of Eq. (4) against logged power data from the platform, or (b) repeated real-world runs comparing the full system against UAV-only and UGV-only baselines, with measured battery consumption.
- [Sec. V-B, Eq. (7)] Equation (7) charges the entire segment from P_i to P_{i+1} at the power of the modality assigned to the arrival viewpoint, M(P_{i+1}). This means a terrestrial-to-terrestrial segment that actually requires a brief flight (e.g., to climb stairs, as illustrated in Fig. 4 of the supplementary) is charged at terrestrial power, underestimating energy consumption. This bias could systematically favor terrestrial choices in simulation, affecting the reported coverage and remaining-energy values. Please either modify the cost model to account for intermediate modality switches, or provide evidence that such mixed-modality segments are rare enough in the tested scenes to be negligible.
- [Sec. VII-A, Fig. 8; supplementary Tabs. 1-2] The paper reports five or ten trials per condition but does not provide error bars, standard deviations, or statistical significance for the coverage percentages and remaining-energy/time values. For example, in supplementary Tab. 2, Case 1, the coverage difference between UGV-cross (92.1%) and Ours (93.2%) is small, and without variance information it is unclear whether this difference is meaningful. Please report the variance across trials and, where appropriate, statistical tests for the key comparative claims.
- [Sec. V-C, Eq. (8); supplementary Sec. 5] The guidance path in the simulation phase uses the average modality M = (T+A)/2 (Sec. V-C and Eq. (8)), whereas the tree expansion uses actual per-segment modalities (Eq. (7)). The supplementary (Sec. 5) acknowledges this inaccuracy and argues that the UCB selection policy progressively corrects it, but no empirical evidence is given that the correction converges within the iteration counts used in Sec. VII-A (e.g., ten iterations in supplementary Sec. 8.1). Please quantify the estimation error introduced by the average-modality assumption, for example by comparing the guidance-path estimates against the fully expanded tree costs, or by analyzing sensitivity to the choice of P_{(T+A)/2}.
minor comments (5)
- [Sec. VII-A] The main text does not include the baseline comparisons that support the abstract's claim of 'better coverage than an aerial-only baseline under energy shortage and comparable performance under time shortage.' These results appear only in the supplementary (Tabs. 1-2). I recommend citing these tables explicitly in Sec. VII-A or moving a summary of the framework-level comparison into the main text.
- [Sec. VII-B] The real-world experiment reports only one run. Please state the number of runs explicitly and, if multiple runs were performed, report the spread of energy/modality trajectories. Also, the energy and modality curves in Fig. 10(b) would be more informative if annotated with the times of takeoff/landing events and with the measured versus predicted remaining energy.
- [Eq. (3)] The time cost model uses max(length/v_M,max, dyaw/omega_M,max). This neglects acceleration limits and turning time during path traversal. This is a simplification, but since the same model is used in simulation and planning, the resulting bias is only relevant to real-world transfer; please mention this limitation explicitly.
- [Supplementary Sec. 9.1] The hyperparameter formulas a1 = b1 - log(0.3), b1 = log(10) should be checked for typographical consistency: the main text (Sec. V-A) defines kappa_Er(x) = exp(-a1*x/E_all + b1) and kappa_Tr(x) = exp(-a2*x/T_all + b2). Please clarify the units of b1 and b2 (the offset in the exponent must be dimensionless).
- [Sec. II] Reference [6] is cited as the basis for the bimodal motion planner, but the extension over [6] is described only qualitatively. Please highlight the specific new capabilities (e.g., online ground segmentation, dual grid maps, modality-aware primitives, ESDF-based edge safety) in a way that lets readers identify the novel components without reading the supplementary.
Circularity Check
Simulation energy/time metrics are computed from the same constant-power model that BM-MCTS optimizes, so the resource-balancing demonstration is partly self-confirming; the real-world run and coverage comparisons provide independent content.
-
self definitional
[Eq. (4); Sec. V-A Eqs. (7)-(8); Sec. VII-A simulation setup; Fig. 8(b)]
"Based on our TABV platform, the power of the aerial modality is 7 times that of the terrestrial modality. So we set PT = 1, and PA = 7, meaning that one second of movement in terrestrial mode consumes 1 unit of energy, while one second in aerial mode consumes 7 units."
The planner in Sec. V-A computes Er/Tr via Eqs. (7)-(8) using the constant-power model E = P_M * T from Eq. (4), and the simulation in Sec. VII-A adopts the same model with PT=1 and PA=7. The reported remaining energy and time when exploration is completed (Fig. 8(b)) are therefore produced by the very cost function BM-MCTS optimizes: the demonstrated budget-adaptation (larger time budget leading to more remaining energy, and vice versa) is a direct consequence of the objective rather than an independent test of the energy model. The single real-world run and the baseline coverage comparisons preserve some independent content, but the resource-balancing claim is self-confirming within simulation.
full rationale
The central claim has independent content: coverage comparisons against FUEL and UAV/UGV baselines (supplementary Sec. 8) use the same simulation model but show the planner's modality choices improve coverage, and the real-world experiment (Sec. VII-B) demonstrates feasibility on hardware. However, the paper's demonstration that BM-MCTS adapts to energy and time budgets rests on a simulation whose energy/time bookkeeping is identical to the planner's cost model (Eq. 4), so the resource-balancing results are partly by construction. The paper itself acknowledges the model's idealization in supplementary Sec. 4 ('The estimated energy and time consumption may not fully reflect real-world factors such as terrain resistance or aerodynamic effects') and lists 'Locally myopic resource estimation' as a limitation (Sec. 11), which supports treating this as a partial circularity rather than a fatal one. No load-bearing self-citation chain or imported uniqueness theorem was found; the motion planner citations [6, 26] are to prior published work and are supplemented by new enhancements.
Assumptions & free parameters
free parameters (6)
- Simulation power values P_T and P_A =
P_T=1, P_A=7 (measured real ratio approximately 7.2)
- Penalty hyperparameters a1, b1, a2, b2 =
a1=b1-log(0.3), b1=log(10); a2=b2-log(0.7), b2=log(3)
- IG discount factor gamma_IG =
0.8
- Normalization floor epsilon =
0.05
- Viewpoint coverage stopping thresholds =
95% coverage; minimum marginal gain 15% of cluster size
- Average-modality parameters for guidance paths =
v=(v_T+v_A)/2, P=(P_T+P_A)/2
assumptions (6)
- standard math Greedy maximization of a submodular set function is within (1-1/e) of the optimal solution
- standard math MCTS with UCB selection converges to the optimal decision under the given reward model
- domain assumption A constant average power per modality faithfully models actual energy consumption
- domain assumption Topo-graph A* search gives a conservative and sufficiently accurate path length estimate
- domain assumption Ground traversability can be inferred from grid-map ground segmentation
- ad hoc to paper The average modality (T+A)/2 approximates the unknown modality choices in guidance paths
Cite this review
Pith. "Pith review of Autonomous Exploration with Terrestrial-Aerial Bimodal Vehicles." pith.science (2026). https://pith.science/paper/2YKQON5B
@misc{pith2026250721338,
author = {Pith},
title = {Pith review of: Autonomous Exploration with Terrestrial-Aerial Bimodal Vehicles},
year = {2026},
howpublished = {\url{https://pith.science/paper/2YKQON5B}},
note = {Machine review of arXiv:2507.21338}
}
read the original abstract
Terrestrial-aerial bimodal vehicles, which integrate the high mobility of aerial robots with the long endurance of ground robots, offer significant potential for autonomous exploration. Given the inherent energy and time constraints in practical exploration tasks, we present a hierarchical framework for the bimodal vehicle to utilize its flexible locomotion modalities for exploration. Beginning with extracting environmental information to identify informative regions, we generate a set of potential bimodal viewpoints. To adaptively manage energy and time constraints, we introduce an extended Monte Carlo Tree Search approach that strategically optimizes both modality selection and viewpoint sequencing. Combined with an improved bimodal vehicle motion planner, we present a complete bimodal energy- and time-aware exploration system. Extensive simulations and deployment on a customized real-world platform demonstrate the effectiveness of our system.
Figures
Figures from the paper (23 more)
Reference graph
Works this paper leans on
-
[1]
4" FUNCTION default.is.dash.repeated.names #1 FUNCTION default.name.format.string
11em plus .33em minus .07em @technote 4000 4000 100 4000 4000 500 `\.=1000 = #1 #1 #1 0pt [0pt][0pt] #1 * \| ** #1 \@IEEEauthorblockNstyle \@IEEEauthorblockAstyle \@IEEEauthordefaulttextstyle \@IEEEauthorblockconfadjspace -0.25em \@IEEEauthorblockNtopspace 0.0ex \@IEEEauthorblockAtopspace 0.0ex \@IEEEauthorblockNinterlinespace 2.6ex \@IEEEauthorblockAinte...
work page 2003
-
[2]
write newline
" write newline "" initialize.prev.this.status FUNCTION begin.bib preamble empty 'skip preamble write newline if " thebibliography " longest.label * " " * write newline " [1] #1 " write newline " url@rmstyle " write newline " " write newline " [2] #2 " write newline " =0pt " write newline " " ALTinterwordstretchfactor * " " * write newline " = 2 plus " wr...
- [3]
-
[4]
L. Wang, F. Gao, F. Cai, and S. Shen, ``Crash: A collaborative aerial-ground exploration system using hybrid-frontier method,'' in Proc. of the IEEE Intl. Conf. on Robot. and Bio. ( ROBIO ) , 2018, p. 2259
work page 2018
- [5]
-
[6]
H. Qin, Z. Meng, W. Meng, X. Chen, H. Sun, F. Lin, et al., ``Autonomous exploration and mapping system using heterogeneous uavs and ugvs in gps-denied environments,'' IEEE Trans. on Veh. Tech., vol. 68, no. 2, pp. 1339--1350, 2019
work page 2019
-
[7]
J. Williams, S. Jiang, M. O’Brien, G. Wagner, E. Hernandez, M. Cox, et al., ``Online 3d frontier-based ugv and uav exploration using direct point cloud visibility,'' in 2020 IEEE Intl. Conf. on Multisensor Fusion and Integration for Intell. Sys. (MFI). 1em plus 0.5em minus 0.4em IEEE, 2020, pp. 263--270
work page 2020
- [8]
Show all 29 references
-
[9]
Yamauchi, ``A frontier-based approach for autonomous exploration,'' in Proc
B. Yamauchi, ``A frontier-based approach for autonomous exploration,'' in Proc. of the IEEE Intl. Symp. on Comput. Intell. in Robot. and Autom. 1em plus 0.5em minus 0.4em IEEE, 1997, pp. 146--151
1997
-
[10]
Cieslewski, E
T. Cieslewski, E. Kaufmann, and D. Scaramuzza, ``Rapid exploration with multi-rotors: A frontier selection method for high speed flight,'' in Proc. of the IEEE/RSJ Intl. Conf. on Intell. Robots and Syst. 1em plus 0.5em minus 0.4em IEEE, 2017, pp. 2135--2142
2017
-
[11]
C. Cao, H. Zhu, H. Choset, and J. Zhang, ``Tare: A hierarchical framework for efficiently exploring complex 3d environments,'' in Proc. of Robot.: Sci. and Syst. ( RSS ) , 2021
2021
-
[12]
B. Zhou, Y. Zhang, X. Chen, and S. Shen, ``Fuel: Fast uav exploration using incremental frontier structure and hierarchical planning,'' IEEE Robot. Autom. Lett. , vol. 6, no. 2, pp. 779--786, 2021
2021
-
[13]
next-best-view
A. Bircher, M. Kamel, K. Alexis, H. Oleynikova, and R. Siegwart, ``Receding horizon" next-best-view" planner for 3d exploration,'' in Proc. of the IEEE Intl. Conf. on Robot. and Autom. ( ICRA ) . 1em plus 0.5em minus 0.4em IEEE, 2016, pp. 1462--1468
2016
-
[14]
G. Best, O. M. Cliff, T. Patten, R. R. Mettu, and R. Fitch, ``Dec-mcts: Decentralized planning for multi-robot active perception,'' Intl. J. Robot. Research ( IJRR ) , vol. 38, no. 2-3, pp. 316--337, 2019
2019
-
[15]
K. M. Seiler, F. H. Kong, and R. Fitch, ``Multi-horizon multi-agent planning using decentralised monte carlo tree search,'' IEEE Robot. Autom. Lett. , 2024
2024
-
[16]
S. Bone, L. Bartolomei, F. Kennel-Maushart, and M. Chli, ``Decentralised multi-robot exploration using monte carlo tree search,'' in Proc. of the IEEE/RSJ Intl. Conf. on Intell. Robots and Syst. 1em plus 0.5em minus 0.4em IEEE, 2023, pp. 7354--7361
2023
-
[17]
Zheng, Q
Z. Zheng, Q. Cai, J. Wang, X. Xu, M. Cao, H. Yu, et al., ``Capsulebot: A novel hybrid aerial-ground bi-copter robot with two actuated-wheel-rotors,'' IEEE Robot. Autom. Lett. , vol. 10, no. 1, pp. 120--127, 2025
2025
-
[18]
M. Cao, X. Xu, S. Yuan, K. Cao, K. Liu, and L. Xie, ``Doublebee: A hybrid aerial-ground robot with two active wheels,'' in Proc. of the IEEE/RSJ Intl. Conf. on Intell. Robots and Syst. , 2023, pp. 6962--6969
2023
-
[19]
J. Lin, R. Zhang, N. Pan, C. Xu, and F. Gao, ``Skater: A novel bi-modal bi-copter robot for adaptive locomotion in air and diverse terrain,'' IEEE Robot. Autom. Lett. , vol. 9, no. 7, pp. 6392--6399, 2024
2024
-
[20]
J. Tang, R. Zhang, K. Beyduz, Y. Jiang, C. Wiebe, H. Zhang, et al., ``Duawlfin: A drone with unified actuation for wheeled locomotion and flight operation,'' arXiv preprint arXiv:2505.13836, 2025
2025 arXiv
-
[21]
Morrell, R
B. Morrell, R. Thakker, \`A . Santamaria Navarro, A. Bouman, X. Lei, J. Edlund, et al., ``Nebula: Team costar’s robotic autonomy solution that won phase ii of darpa subterranean challenge,'' Field robotics, vol. 2, pp. 1432--1506, 2022
2022
-
[22]
G. L. Nemhauser, L. A. Wolsey, and M. L. Fisher, ``An analysis of approximations for maximizing submodular set functions—i,'' Mathematical programming, vol. 14, pp. 265--294, 1978
1978
-
[23]
Gao, Supplementary Materials for Autonomous Exploration with Terrestrial-Aerial Bimodal Vehicles , May 2025
Y. Gao, Supplementary Materials for Autonomous Exploration with Terrestrial-Aerial Bimodal Vehicles , May 2025. [Online]. Available: https://doi.org/10.5281/zenodo.15510722
2025 doi
-
[24]
D. D. Fan, R. Thakker, T. Bartlett, M. B. Miled, L. Kim, E. Theodorou, et al., ``Autonomous hybrid ground/aerial mobility in unknown environments,'' in Proc. of the IEEE/RSJ Intl. Conf. on Intell. Robots and Syst. 1em plus 0.5em minus 0.4em IEEE, 2019, pp. 3070--3077
2019
-
[25]
Kalantari, T
A. Kalantari, T. Touma, L. Kim, R. Jitosho, K. Strickland, B. T. Lopez, et al., ``Drivocopter: A concept hybrid aerial/ground vehicle for long-endurance mobility,'' in IEEE Aero. Conf. 1em plus 0.5em minus 0.4em IEEE, 2020, pp. 1--10
2020
-
[26]
Coulom, ``Efficient selectivity and backup operators in monte-carlo tree search,'' in International conference on computers and games
R. Coulom, ``Efficient selectivity and backup operators in monte-carlo tree search,'' in International conference on computers and games. 1em plus 0.5em minus 0.4em Springer, 2006, pp. 72--83
2006
-
[27]
Chen and L
W. Chen and L. Liu, ``Pareto monte carlo tree search for multi-objective informative planning,'' in Proc. of Robot.: Sci. and Syst. ( RSS ) , 2019
2019
-
[28]
Zhang, J
R. Zhang, J. Lin, Y. Wu, Y. Gao, C. Wang, C. Xu, et al., ``Model-based planning and control for terrestrial-aerial bimodal vehicles with passive wheels,'' in Proc. of the IEEE/RSJ Intl. Conf. on Intell. Robots and Syst. 1em plus 0.5em minus 0.4em IEEE, 2023, pp. 1070--1077
2023
-
[29]
W. Xu, Y. Cai, D. He, J. Lin, and F. Zhang, ``Fast-lio2: Fast direct lidar-inertial odometry,'' IEEE Trans. Robot. ( TRO ) , vol. 38, no. 4, pp. 2053--2073, 2022
2022
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.