Enabling Cooperative Autonomy in UUV Clusters: A Survey of Robust State Estimation and Information Fusion Techniques
Highlights
- Our quantitative analysis reveals a fundamental trade-off in cooperative navigation: batch optimization methods like FGO provide the highest accuracy at a significant computational cost, while robust filters like MCC-KF offer resilience to non-Gaussian noise with much greater efficiency but are prone to long-term drift.
- A critical review of intelligent strategies (e.g., DRL, Semantic Communication) and advanced navigation techniques shows that while conceptually powerful, their practical deployment is currently hindered by specific, unresolved challenges such as the sim-to-real gap, hyperparameter instability, and the lack of standardized underwater datasets.
- The key implication is that the optimal algorithm choice is a mission-specific engineering decision, not a one-size-fits-all solution; this paper provides the first data-driven framework (via our quantitative comparison) to guide researchers and engineers in making this critical trade-off between accuracy and resource constraints.
- This work implies that future research should prioritize the specific, practical bottlenecks identified in this review, and our data-driven roadmap provides concrete, actionable research questions to accelerate the transition of these advanced technologies from theory to robust, real-world application in autonomous underwater systems.
Abstract
1. Introduction
1.1. Critical Role of Sensor Fusion in Cooperative Navigation
1.2. Motivation and Challenges
1.3. Overview of Algorithmic Approaches
1.4. Research Gap
1.5. Contribution
- A Novel Quantitative Comparison Framework: We introduce a standardized benchmark scenario and a multi-dimensional assessment methodology to systematically evaluate key algorithms. This framework is built upon concrete performance metrics—Root Mean Square Error (RMSE), CPU usage, communication load, and latency—that directly address the critical trade-offs in UUV system design. The results, encapsulated in our comprehensive comparison and intuitive radar chart visualization (Section 7.3), provide a clear, data-driven foundation for algorithm selection.
- A Structured Algorithmic Taxonomy and In-Depth Analysis: We present a detailed taxonomy of state-of-the-art techniques, complemented by an in-depth analysis of pivotal methods. This includes a detailed mathematical derivation of the Maximum Correntropy Criterion (MCC) Kalman Filter (KF) (Section 4.3) and a thorough examination of Robust Filtering Techniques, encompassing adaptive, consensus, and information-theoretic approaches (Section 4.4). This level of technical detail provides the necessary foundation to fully contextualize our quantitative comparisons.
- A Data-Informed Future Research Roadmap: Based on the insights gleaned from our quantitative analysis, we identify and discuss key unresolved challenges and promising future research directions. Unlike speculative roadmaps, our recommendations are directly tied to the performance gaps and trade-offs revealed by our comparative framework, highlighting specific areas—such as the development of scalable algorithms that balance accuracy and computational cost—that require focused attention from the research community.
1.6. Paper Structure
- Section 2 begins by detailing the root cause of these challenges: the physical limitations of the underwater acoustic channel.
- With the problem defined, Section 3 analyzes the foundational state estimation paradigms.
- The core of the review then delves into specific fusion algorithms in Section 4, critically focusing on robust methods.
- Building on this foundation, Section 5 investigates how a robust fusion engine enables intelligent behaviors through Deep Reinforcement Learning (DRL) and Task-Oriented Communication (TOC).
- Subsequently, Section 6 extends the discussion to complex multi-sensor platforms and extreme environments.
- Section 7 first assesses critical system-level issues such as security, and then culminates in our core contribution: a new subsection providing a comprehensive quantitative comparative analysis that synthesizes the preceding discussions into a data-driven evaluation.
- Section 8 proposes a forward-looking research roadmap based on the insights from our analysis.
- Finally, Section 9 summarizes the main conclusions of this work.
2. Hydroacoustic Communication Channel Modeling and Its Impact on Navigation
2.1. Physical Basis of Hydroacoustic Propagation
2.2. Classification of Delay and Packet Loss Models
2.2.1. Delay Modeling
2.2.2. Packet Loss Modeling
2.3. Data-Driven Channel Prediction Methods
2.4. High-Fidelity Simulation: Tools, Techniques, and Datasets
2.5. Summary
3. State Estimation and Information Reconstruction Under Uncertainty
3.1. Asynchrony and the Challenge of the Information Divide
3.2. Model-Based Prediction and Compensation Techniques
- State prediction: when neighbor information is temporarily unavailable, each UUV can use its dynamics or kinematics model for state forward propagation. This includes state prediction using kinetic model-based methods such as Extended Kalman Filter (EKF) or Unscented Kalman Filter (UKF) [34], as well as simpler kinematic methods such as polynomial (e.g., Lagrangian) interpolation based on historical trajectory points, or curve fitting, for short-term position prediction when the kinetic model is unknown or too complex [22].
- Delay compensation: In order to deal with received outdated information, researchers have proposed various compensation strategies. One common approach is to consider the communication delay as a measurement bias in the observation model and treat it in the filter update step [35]. Another more refined approach is to use state history augmentation or interpolation to “backtrack” an outdated time-stamped observation to its corresponding historical moment for state updating and covariance correction [32], thus effectively compensating for the latency.
3.3. Paradigm Battle: Recursive Filtering vs. Batch Optimization
3.4. Learning-Based Information Reconstruction
3.5. Summary
4. Fusion Algorithms and Architectures
4.1. Fusion Architecture Framework
- Loosely Coupled (LC) vs. Tightly Coupled (TC) Architectures: In a loosely coupled system, each sensor’s data are processed independently to produce a state estimate, and these individual estimates are then fused. This approach is modular and simple but can suffer from information loss [49,50]. In contrast, a tightly coupled architecture fuses raw sensor data directly within a single estimation filter, which is more complex but can achieve higher accuracy by fully exploiting the correlations between different sensor measurements [51,52].
- Recursive Filtering vs. Batch Optimization: Recursive filters process measurements sequentially, updating the state estimate at each time step and then discarding the measurement. This is computationally efficient [11,53]. Batch optimization, exemplified by Factor Graph Optimization (FGO), retains all measurements over a time window and solves for the most likely sequence of states that best explains all observations simultaneously [54,55]. FGO models the problem as a bipartite graph of variable nodes (states) and factor nodes (probabilistic constraints from measurements) [55]. While its ability to correct long-term drift is a crucial advantage for extended UUV missions, its batch nature demands higher memory, computational resources, and significant communication overhead to share factor information, making it challenging for resource-constrained UUVs [56,57].
- Advanced Topics in Distributed Fusion Frameworks: The practical implementation of these architectures in a distributed UUV network faces further challenges that require advanced solutions. The first is the problem of data incest or “double counting,” which is addressed by algorithms like Covariance Intersection (CI) that conservatively fuse information without requiring knowledge of cross-correlations [58,59]. Second is ensuring the convergence of distributed filters under asynchronous links and frequent packet loss, a key research area for UAC networks [60,61]. Finally, the Information Filter (IF) offers a practical method for communication compression, as its additive nature in the information space simplifies distributed fusion to a simple summation of information vectors from each node [62].
4.2. Bayesian Filtering: The EKF, UKF, and Particle Filters
- EKF/UKF: EKF and UKF are fundamental tools for dealing with nonlinear systems [63]. In collaborative navigation, they are used to recursively fuse predictions from the UUV’s own motion model with relative measurements from neighboring nodes (e.g., acoustic ranging, azimuthal angle, etc.). The EKF is linearized by a first-order Taylor expansion of a nonlinear function, and is suitable for weakly nonlinear systems, whereas the UKF approximates the state distribution by an Unscented Transform. UKF approximates the state distribution by Unscented Transform, which has higher accuracy for strongly nonlinear systems, but the computational complexity increases accordingly.
- Particle Filters (PF): PFs provide a powerful nonparametric solution for complex problems with strongly nonlinear dynamics or non-Gaussian noise distributions [64]. It represents the posterior probability density by a set of random samples (particles) with weights, and can theoretically approximate distributions of arbitrary form. However, its main drawbacks are its huge computational effort and its susceptibility to particle degeneration and sample impoverishment problems in high-dimensional state spaces, requiring a large number of particles to ensure estimation accuracy [65]. This limits its wide application to resource-constrained UUVs.
4.3. Robust Filtering Techniques: Adaptive, Consensus, and Information-Theoretic Approaches
4.4. Information-Theoretic Fusion and Fault Detection: Bhattacharyya Distance
4.5. Multiresolution Fusion: Wavelet Analysis and Multirate Architectures
- IMU signal denoising: The most direct application of the wavelet transform is as an advanced signal preprocessing technique [88]. The output signals of IMUs, especially low-cost Micro-Electromechanical System (MEMS) sensors, contain a large amount of random noise. By utilizing the multiresolution property of the wavelet transform, the signal can be decomposed into different frequency bands. Since the energy of the useful signal is mainly concentrated in the low-frequency part, while the noise is widely distributed in the high-frequency part, the noise can be effectively filtered out by applying soft/hard thresholding methods to the high-frequency wavelet coefficients while maximizing the retention of the useful features of the original signal.
- Wavelet-assisted fusion: The wavelet transform provides a unified framework for multi-scale information fusion [16]. In this “wavelet-assisted fusion” strategy, signals from different sensors are first decomposed into the wavelet domain. The fusion process can be carried out at the wavelet coefficient level, e.g., by utilizing high-frequency IMU coefficients for state propagation between high acoustic update rates, and low-frequency acoustic measurements to correct for the low-frequency drift component in the state estimation [26]. This approach not only elegantly handles physical processes on different time scales (e.g., fast maneuvers vs. slow drifts) but also aligns asynchronous data streams through wavelet timing reconstruction. Recent studies have even combined wavelet transforms with neural networks to propose novel network architectures such as WINNet, which takes wavelet-transformed time-frequency features as network inputs along with the original time-domain data [64], providing a richer representation of information for learning-based localization systems. In addition, Wavelet Neural Networks (WNN) are also used to construct motion models of AUVs [17] to cope with system uncertainties.
4.6. Summary
5. Intelligent Strategies and Adaptive Collaboration
5.1. DRL for Collaborative Control and Decision-Making
5.2. TOC: Bandwidth Optimization Based on the Information Bottleneck Principle
5.3. Active and Bionic Sensing for Enhanced Situational Awareness
- Active Cooperative Sensing: In this strategy, UUVs in a cluster are no longer isolated sensing units, but intelligently coordinate each other’s positions and sensing behaviors to achieve globally optimal sensing results [47]. For example, a cluster of UUVs can dynamically adjust its formation to obtain the minimum Dilution of Precision (DOP) for a specific target to maximize the localization accuracy [28]. This approach tightly couples the navigation and sensing tasks so that the cluster “senses” as a whole.
- Bio-inspired Cooperative Control: Clusters of organisms such as schools of fish and flocks of birds in nature exhibit efficient and robust cooperative behavior [105]. Inspired by this, researchers have developed bionic control strategies. For example, a novel control scheme utilizes sonar to construct a dynamic interaction topology that enables UUVs to achieve robust formation control and obstacle avoidance by relying only on relative position information (without exchanging velocity information) [31]. This approach greatly reduces the requirement for communication bandwidth and data synchronization and is well suited for underwater environments. Research programs such as the U.S. ONR Collaborative Autonomous Swarming Technology (CAST) are also actively advancing the field [21], exploring new technologies for distributed control, swarm behavior, and CN.
5.4. Summary
6. Heterogeneous Systems and Extreme Environments
6.1. Collaborative Navigation of Heterogeneous Fleets (UUV-USV-AUV)
6.2. Navigation Frontiers I: Polar Region Operations
6.3. Navigation Frontiers II: Deep Sea and Complex Terrain Localization
6.4. Summary
7. System-Level Challenges: Safety, Assessment, and Deployment
7.1. Securing CN: Resisting Spoofing and Jamming Attacks
7.2. Multi-Dimensional Performance Evaluation Framework
- Fusion Accuracy: Usually measured by the RMSE between the estimated state (position, velocity, attitude) and the ground truth. This is the most direct metric for evaluating the performance of the algorithm.
- Computational Complexity: Measures the consumption of computational resources by the algorithm, which is usually expressed in terms of CPU/GPU processing time per fusion cycle and the memory usage of the algorithm. This is directly related to whether the algorithm can run in real time on resource-constrained UUVs.
- Communication Load: A measure of the algorithm’s need for communication bandwidth, usually expressed in terms of the data transfer rate (bit/second) required by each node and the frequency and size of packet exchanges. This is a critical constraint in UAC channels where bandwidth is extremely valuable.
- Robustness: The ability of a system to maintain its performance stability in the face of non-ideal conditions such as high communication delays, packet loss, node failure, non-Gaussian sensor noise, and external environmental disturbances.
- Scalability: Refers to how key performance metrics (e.g., accuracy, computational complexity, and convergence time) change when the number of nodes in the cluster increases [3]. A scalable algorithm should be able to increase the number of nodes significantly without a sharp drop in performance.
7.3. Comprehensive Quantitative Comparative Analysis of Frontier Methods
- Baseline and Distributed Foundations: EKF and IFThe standard EKF serves as the performance baseline due to its implementation simplicity and high computational efficiency [156]. However, its foundational weakness lies in its strict reliance on Gaussian noise assumptions and linearized models. In the UAC channel’s typical non-Gaussian noise environment, its performance degrades significantly [23]. More critically, it is highly vulnerable to sensor data interruptions; in simulated DVL partial failure scenarios, its RMSE can exhibit catastrophic growth (error increases of over 300%) [154]. The IF, being mathematically dual to the EKF, shows similar performance in centralized scenarios. Its core advantage, however, emerges in distributed systems where the fusion step is remarkably simple—information from different nodes can be directly summed. This property makes it naturally suited for asynchronous and sparse communication environments, thus offering low communication load and strong scalability [157].
- Enhancements within the Recursive Framework: AKF and Consensus FiltersThe AKF and Consensus Filters represent two distinct approaches to improving robustness within the recursive filtering paradigm. By estimating and compensating for time-varying noise statistics online, the AKF can enhance both accuracy and robustness, with studies showing accuracy improvements of 30–40% in certain navigation scenarios [31,158]. A 2022 study in IEEE Transactions on Vehicular Technology further demonstrates a novel adaptive filter that shows strong performance under non-Gaussian noise [159]. The Consensus Filter, in contrast, reformulates the distributed estimation problem as an average consensus problem on a network graph [157]. Its standout advantage is its high robustness to dynamic network topologies and link failures, a topic explored in recent 2025 publications in IEEE Transactions on Automatic Control concerning completely distributed state estimation [160]. However, this comes at the cost of higher communication overhead, as multiple negotiation iterations are often required to reach consensus.
- Specialized Solutions for Harsh Environments: MCC-KF and Wavelet-aided FusionTo specifically address the hostile underwater environment, robust filters based on more advanced theories have been developed. The Maximum Correntropy Criterion Kalman Filter (MCC-KF) demonstrates unique value by fundamentally employing a cost function that is insensitive to large errors. This provides exceptional robustness against the heavy-tailed, impulsive noise commonly caused by acoustic multipath effects [68,155,161]. This is corroborated by new 2025 research in the IEEE Signal Processing Letters, which proposes a dual-robust-kernel Kalman filter specifically for outlier-robust underwater navigation [162]. Recent studies indicate that in complex non-Gaussian noise environments, MCC-KF-based algorithms can improve navigation accuracy by over 50% compared to traditional filters [163]. Wavelet-aided fusion approaches the problem from a signal processing perspective. By decomposing and reconstructing sensor signals across different frequency scales, it can effectively filter noise and align asynchronous data streams, thereby significantly improving fusion accuracy. Experiments have shown that wavelet denoising, even as a preprocessing step, can reduce the root mean square of position errors by approximately 14% [85].
- The High-Accuracy Paradigm: Factor Graph OptimizationFGO represents the current state-of-the-art in terms of achievable accuracy. By abandoning the Markov assumption of recursive filters and jointly optimizing all historical states and measurements within a time window, it achieves global consistency and can effectively correct earlier errors [41,42,43]. In comparable navigation problems, its RMSE can be significantly lower than that of an EKF, with forthcoming work in the 2025 IEEE/ION Position, Location and Navigation Symposium (PLANS) continuing to validate its superior performance in robust navigation frameworks [154]. Critically, its batch-processing nature provides remarkable resilience to sensor failures, with error growth being minimal in DVL failure scenarios [154]. However, this high precision is achieved at the cost of high computational complexity (often >3 times that of an EKF) and latency [156]. Furthermore, its computational complexity scales quadratically with the number of nodes , limiting its real-time application in very large-scale clusters [41].
7.4. Summary
8. Synthesis, Key Challenges, and Future Roadmap
8.1. Synthesis of Key Findings and Technology Evolution
8.2. Challenges and Unsolved Problems
- The Accuracy-vs-Complexity Gap: This is the most significant challenge. As demonstrated in our quantitative analysis, there is a clear performance gap between theoretically optimal but resource-intensive batch methods and efficient but less accurate filtering techniques [168]. The unsolved problem is how to design algorithms that are both robust for long-duration missions and practical for real-time execution on embedded UUV hardware. Recent approaches attempt to bridge this using techniques like federated fixed-lag smoothing to balance accuracy and computational load [169]
- Hyperscale Scalability: Most existing algorithms are validated in simulations with only a few UUVs. The communication and computational complexity associated with scaling to clusters of tens or even hundreds of vehicles (hyperscale) remains a largely unsolved problem [170]. The challenge lies in designing decentralized algorithms whose complexity does not grow exponentially with the number of agents and whose performance does not degrade catastrophically with increased communication latency and packet loss, a key focus of modern cooperative localization research [171].
- Energy-Aware Design: The energy budget is arguably the most critical constraint for UUVs. However, the majority of current research focuses on optimizing for navigation accuracy, with energy efficiency often being an afterthought [172]. A key unsolved problem is the lack of a unified framework for the co-design of energy-aware and navigation-aware algorithms that can make intelligent trade-offs between performance and mission endurance, for example, by developing mission planners that explicitly model the vehicle’s energy consumption [173].
- Lack of Standardized Benchmarking: As highlighted by our effort to create a comparison framework in Section 7, the field lacks standardized, publicly available underwater datasets and simulation environments. This makes it exceedingly difficult to fairly compare new algorithms, hindering reproducible research and slowing the pace of innovation. While specific efforts have been made to create and characterize datasets [174], the community still needs more comprehensive and widely adopted benchmarks to rigorously validate emerging navigation techniques [175].
8.3. Future Research Trajectories: A Roadmap for the Next Decade
8.3.1. Short-Term Goals (1–3 Years)
- Standardized Benchmarking and Datasets: A primary obstacle to progress is the lack of standardized datasets. The community urgently needs to develop benchmark suites—analogous to the KITTI dataset in autonomous driving—that include raw sensor data (IMU, DVL, sonar, acoustic modem logs) from diverse, real-world underwater environments [175,176]. This would directly address the need for better evaluation controls and accelerate innovation.
- Energy-Aware Navigation and Communication: Future research should focus on algorithms that explicitly co-optimize for navigation accuracy and energy consumption. This includes developing adaptive sensing strategies where a UUV can power down non-essential sensors, and creating energy-aware communication protocols that schedule transmissions to minimize the power-intensive “wake-up” cycles of acoustic modems [177].
8.3.2. Medium-Term Goals (3–7 Years)
- Bridging the Accuracy-Complexity Gap with Hybrid AI: A key research question is: How can we design algorithms that achieve FGO-like accuracy with filter-like efficiency? A promising avenue is the development of Hybrid AI models that merge the theoretical rigor of traditional filters with the powerful nonlinear fitting capabilities of neural networks. For example, recent studies have successfully used LSTMs or Transformers to learn and predict the complex, non-Gaussian noise characteristics of sensors, which are then fed into an adaptive Kalman filter to improve its accuracy [178,179].
- Hyperscale Scalability via Decentralized Optimization: To overcome the challenges of large-scale swarms, research should move beyond simple consensus and explore more advanced decentralized optimization techniques. This includes developing communication-efficient distributed graph optimization algorithms and exploring event-triggered communication schemes where UUVs only share information when their uncertainty exceeds a certain threshold, thus drastically reducing network load [180].
8.3.3. Long-Term Goals (7+ Years)
- Robust-by-Design Security: As UUV clusters become more autonomous, security becomes paramount. Future work should focus on “robust-by-design” security, moving beyond cryptographic overhead. This involves leveraging the intrinsic robustness of certain estimation algorithms as a defense mechanism. For instance, the statistical fault-detection methods discussed in Section 4.4 can be extended to explicitly detect and reject malicious data injection attacks from compromised nodes, creating a more resource-efficient security paradigm [181].
- Quantum Sensing for GNSS-Free Navigation: A transformative long-term goal is the development of navigation systems that are entirely independent of external signals. Quantum sensing offers a revolutionary path forward. Future research should explore the integration of ultra-precise quantum inertial measurement units (e.g., quantum gyroscopes) and gravity gradiometers, which have the theoretical potential to enable long-duration, drift-free dead reckoning, fundamentally changing the paradigm of underwater navigation [182,183].
- Ethical Frameworks for Autonomous Swarms: As UUV swarms transition from research to real-world deployment in both civilian and military contexts, it is imperative to develop robust ethical and legal frameworks. This includes research into verifiable decision-making, accountability in multi-agent systems, and establishing rules of engagement for autonomous maritime operations to ensure their safe and responsible use [184].
9. Conclusions
Author Contributions
Funding
Data Availability Statement
Acknowledgments
Conflicts of Interest
Abbreviations
| AKF | Adaptive Kalman Filter | 
| ARD | Automatic Relevance Determination | 
| AUV | Autonomous Underwater Vehicle | 
| BD | Bhattacharyya Distance | 
| CAST | Collaborative Autonomous Swarming Technology | 
| CN | Cooperative Navigation | 
| CNN | Convolutional Neural Network | 
| DDQN | Double Deep Q-Network | 
| DOP | Dilution of Precision | 
| DOS | Denial-of-Service | 
| DRL | Deep Reinforcement Learning | 
| DVL | Doppler Velocity Log | 
| EKF | Extended Kalman Filter | 
| FG | Factor Graph | 
| FGO | Factor Graph Optimization | 
| FIM | Fisher Information Matrix | 
| GNSS | Global Navigation Satellite System | 
| GPS | Global Positioning System | 
| IB | Information Bottleneck | 
| IF | Information Filter | 
| IMU | Inertial Measurement Unit | 
| INS | Inertial Navigation System | 
| iSAM | Incremental Smoothing And Mapping | 
| KDE | Kernel Density Estimation | 
| KF | Kalman Filter | 
| LC | Loosely Coupled | 
| LSTM | Long Short-Term Memory Network | 
| MAP | Maximum A Posteriori | 
| MCC | Maximum Correntropy Criterion | 
| MEE | Minimum Error Entropy | 
| MEMS | Micro-Electromechanical System | 
| MLP-RF | Multi-Layer Perceptron-Random Forest | 
| MMSE | Minimum Mean Square Error | 
| MSE | Mean Square Error | 
| ONR | Office of Naval Research | 
| O-VIB | Orthogonally constrained Variational Information Bottleneck | 
| PF | Particle Filter | 
| RF | Recursive Filtering | 
| RMSE | Root Mean Square Error | 
| SLAM | Simultaneous Localization and Mapping | 
| SPWT | Simple Positive Wave Theory | 
| SSP | Sound Speed Profile | 
| SWO | Sliding-Window Optimization | 
| TC | Tightly Coupled | 
| TL | Transmission Loss | 
| TOC | Task-Oriented Communication | 
| UAC | Underwater Acoustic Communication | 
| UAV | Unmanned Aerial Vehicle | 
| UKF | Unscented Kalman Filter | 
| USBL | Ultra-Short Baseline | 
| USV | Unmanned Surface Vehicle | 
| UUV | Unmanned Underwater Vehicle | 
| WNN | Wavelet Neural Network | 
| WOA | World Ocean Atlas | 
References
- Zhang, L.; Wu, S.; Tang, C.; Lin, H. UUV Cluster Distributed Navigation Fusion Positioning Method with Information Geometry. J. Mar. Sci. Eng. 2025, 13, 696. [Google Scholar] [CrossRef]
- Saeed, K.; Khalil, W.; Al-Shamayleh, A.S.; Ahmed, S.; Akhunzada, A.; Alharthi, S.Z.; Gani, A. A Comprehensive Analysis of Security-Based Schemes in Underwater Wireless Sensor Networks. Sustainability 2023, 15, 7198. [Google Scholar] [CrossRef]
- Lin, Y.H.; Chuang, P.C.; Huang, J.Y.T. Simultaneous Depth and Heading Control for Autonomous Underwater Vehicle Docking Maneuvers Using Deep Reinforcement Learning within a Digital Twin System. Comput. Mater. Contin. 2025, 84, 4907–4948. [Google Scholar] [CrossRef]
- Heshmat, M.; Saad Saoud, L.; Abujabal, M.; Sultan, A.; Elmezain, M.; Seneviratne, L.; Hussain, I. Underwater SLAM Meets Deep Learning: Challenges, Multi-Sensor Integration, and Future Directions. Sensors 2025, 25, 3258. [Google Scholar] [CrossRef]
- Gao, W.; Yang, J.; Liu, J.; Xu, B.; Shi, H. Cooperative location of multiple UUVs based on hydro-acoustic communication delay. Syst. Eng. Electron. 2014, 36, 539–544. [Google Scholar]
- Das, B.; Subudhi, B.; Pati, B.B. Cooperative Formation Control of Autonomous Underwater Vehicles: An Overview. Int. J. Autom. Comput. 2016, 13, 199–225. [Google Scholar] [CrossRef]
- Goel, S. A Distributed Cooperative UAV Swarm Localization System: Development and Analysis. In Proceedings of the 30th International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2017), Portland, Oregon, 25–29 September 2017; pp. 2501–2518. [Google Scholar] [CrossRef]
- Office of Naval Research. Cooperative Autonomous Swarm Technology (CAST). 2022. Available online: https://www.onr.navy.mil/organization/departments/code-33/division-333/cooperative-autonomous-swarm-technology (accessed on 15 July 2025).
- Wang, Z.; Wang, H.; Yuan, J.; Yu, D.; Zhang, K.; Ren, J. Bio-Inspired Cooperative Control Scheme of Obstacle Avoidance for UUV Swarm. J. Mar. Sci. Eng. 2024, 12, 489. [Google Scholar] [CrossRef]
- Li, N.; Martínez, J.F.; Meneses Chaus, J.M.; Eckert, M. A Survey on Underwater Acoustic Sensor Network Routing Protocols. Sensors 2016, 16, 414. [Google Scholar] [CrossRef] [PubMed]
- Chen, B.; Liu, X.; Zhao, H.; Principe, J.C. Maximum correntropy Kalman filter. Automatica 2017, 76, 70–77. [Google Scholar] [CrossRef]
- Ning, B.; Zhao, F.; Luo, H.; Luo, D.; Shao, W. Robust GNSS/INS Tightly Coupled Positioning Using Factor Graph Optimization with P-Spline and Dynamic Prediction. Remote Sens. 2025, 17, 1792. [Google Scholar] [CrossRef]
- Cheng, Z.; Chen, G.; Li, X.M.; Ren, H. Consensus-Based Power System State Estimation Algorithm Under Collaborative Attack. Sensors 2024, 24, 6886. [Google Scholar] [CrossRef]
- Chen, Y.; Gao, Y.; Gan, K.; Li, M.; Wei, C.; Guo, X.; Zhao, R.; Lu, J.; Che, L. State Estimation for Active Distribution Networks Considering Bad Data in Measurements and Topology Parameters. Energies 2025, 18, 2222. [Google Scholar] [CrossRef]
- González-García, J.; Gómez-Espinosa, A.; Cuan-Urquizo, E.; García-Valdovinos, L.G.; Salgado-Jiménez, T.; Cabello, J.A.E. Autonomous Underwater Vehicles: Localization, Navigation, and Communication for Collaborative Missions. Appl. Sci. 2020, 10, 1256. [Google Scholar] [CrossRef]
- Theocharidis, T.; Kavallieratou, E. Underwater communication technologies: A review. Telecommun. Syst. 2025, 88, 54. [Google Scholar] [CrossRef]
- Zhou, Q.; Ye, Q.; Lai, C.; Kou, G. Cryptography-Based Secure Underwater Acoustic Communication for UUVs: A Review. Electronics 2025, 14, 2415. [Google Scholar] [CrossRef]
- Bae, I.; Hong, J. Survey on the Developments of Unmanned Marine Vehicles: Intelligence and Cooperation. Sensors 2023, 23, 4643. [Google Scholar] [CrossRef]
- Merveille, F.F.R.; Jia, B.; Xu, Z. Advancements in Underwater Navigation: Integrating Deep Learning and Sensor Technologies for Unmanned Underwater Vehicles. Preprints 2024. [Google Scholar] [CrossRef]
- Yu, R.; Liu, Y.; Meng, Y.; Guo, Y.; Xiong, Z.; Jiang, P. Optimal Configuration of Heterogeneous Swarm for Cooperative Detection with Minimum DOP Based on Nested Cones. Drones 2024, 8, 11. [Google Scholar] [CrossRef]
- Guo, Q.; Yan, X.; Luo, Q.; Lin, J. Cooperative localization algorithm for multiple AUVs under communication Delay. In Proceedings of the 2025 International Wireless Communications and Mobile Computing (IWCMC), Abu Dhabi, United Arab Emirates, 12–16 May 2025; pp. 31–36. [Google Scholar] [CrossRef]
- Li, L.; Li, Y.; Zhang, Y.; Xu, G.; Zeng, J.; Feng, X. Formation control of multiple autonomous underwater vehicles under communication delay, packet discreteness and dropout. J. Mar. Sci. Eng. 2022, 10, 920. [Google Scholar] [CrossRef]
- Yan, Z.P.; Liu, Y.B.; Zhou, J.J.; Zhang, W.; Wang, L. Consensus of multiple autonomous underwater vehicles with double independent Markovian switching topologies and time-varying delays. Chin. Phys. B 2017, 26, 040203. [Google Scholar] [CrossRef]
- Deo, I.K.; Venkateshwaran, A.; Jaiman, R.K. Predicting transmission loss in underwater acoustics using continual learning with range-dependent conditional convolutional neural networks. J. Acoust. Soc. Am. 2025, 157, 3930–3945. [Google Scholar] [CrossRef] [PubMed]
- Xu, W.; Zhang, L.; Wang, H. Machine learning–based feature prediction of convergence zones in ocean front environments. Front. Mar. Sci. 2024, 11, 1337234. [Google Scholar] [CrossRef]
- Gallici, M.; Masmitja, I.; Martín, M. Scaling Multi Agent Reinforcement Learning for Underwater Acoustic Tracking via Autonomous Vehicles. arXiv 2025. [Google Scholar] [CrossRef]
- Staff Writer. Uncrewed Marine Vehicles—USV, ASV, UUV, AUV & ROV. Unmanned Syst. Technol. 2025. Available online: https://www.unmannedsystemstechnology.com/expo/uncrewed-marine-vehicles/ (accessed on 28 October 2025).
- Mostaani, A.; Vu, T.X.; Sharma, S.K.; Nguyen, V.D.; Liao, Q.; Chatzinotas, S. Task-Oriented Communication Design in Cyber-Physical Systems: A Survey on Theory and Applications. IEEE Access 2022, 10, 133842–133868. [Google Scholar] [CrossRef]
- Wang, Q.; Fan, S.; Zhang, Y.; Gao, W.; Wei, J.; Wang, Y. A Novel Adaptive Sliding Observation-Based Cooperative Positioning Algorithm Under Factor Graph Framework for Multiple UUVs. IEEE Trans. Ind. Inform. 2023, 19, 8743–8753. [Google Scholar] [CrossRef]
- Ouyang, X.; Zeng, F.; Lv, D.; Dong, T.; Wang, H. Cooperative Navigation of UAVs in GNSS-Denied Area With Colored RSSI Measurements. IEEE Sens. J. 2021, 21, 2194–2210. [Google Scholar] [CrossRef]
- Sheng, G.; Liu, X.; Sheng, Y.; Cheng, X.; Luo, H. Cooperative Navigation Algorithm of Extended Kalman Filter Based on Combined Observation for AUVs. Remote Sens. 2023, 15, 533. [Google Scholar] [CrossRef]
- Edu, I.R.; Adochiei, F.C.; Obreja, R.; Rotaru, C.; Grigorie, T.L. Inertial Sensor Signals Denoising with Wavelet Transform. INCAS Bull. 2015, 7, 57–64. [Google Scholar] [CrossRef]
- Xu, B.; Wang, X.; Guo, Y.; Zhang, J.; Razzaqi, A.A. A Novel Adaptive Filter for Cooperative Localization Under Time-Varying Delay and Non-Gaussian Noise. IEEE Trans. Instrum. Meas. 2021, 70, 1–15. [Google Scholar] [CrossRef]
- Zhang, H.; Ji, D.S.; Xie, S.R.; Wang, W.H. A Review of Path Planning for Autonomous Underwater Vehicles. Sensors 2022, 22, 5016. [Google Scholar] [CrossRef]
- Yan, T.; Xu, Z.; Yang, S.X. Consensus Formation Tracking for Multiple AUV Systems Using Distributed Bioinspired Sliding Mode Control. IEEE Trans. Intell. Veh. 2023, 8, 1081–1092. [Google Scholar] [CrossRef]
- Fox, V.; Hightower, J.; Liao, L.; Schulz, D.; Borriello, G. Bayesian filtering for location estimation. IEEE Pervasive Comput. 2003, 2, 24–33. [Google Scholar] [CrossRef]
- Das, A.; Elfring, J.; Dubbelman, G. Real-Time Vehicle Positioning and Mapping Using Graph Optimization. Sensors 2021, 21, 2815. [Google Scholar] [CrossRef]
- Li, T.; Zhou, T. Multi-scale fusion framework via retinex and transmittance optimization for underwater image enhancement. PLoS ONE 2022, 17, e0275107. [Google Scholar] [CrossRef]
- Hamza, A.B.; He, Y.; Krim, H.; Willsky, A.S. A multiscale approach to pixel-level image fusion. Integr. Comput.-Aided Eng. 2005, 12, 135–146. [Google Scholar] [CrossRef]
- Tang, Y.; Gong, J.; Li, Y.; Zhang, G.; Yang, B.; Yang, Z. Wavelet Transform-Based Inertial Neural Network for Spatial Positioning Using Inertial Measurement Units. Remote Sens. 2024, 16, 2326. [Google Scholar] [CrossRef]
- Dellaert, F.; Kaess, M. Factor Graphs for Robot Perception. Found. Trends® Robot. 2017, 6, 1–139. [Google Scholar] [CrossRef]
- Cadena, C.; Carlone, L.; Carrillo, H.; Latif, Y.; Scaramuzza, D.; Neira, J.; Reid, I.; Leonard, J.J. Past, Present, and Future of Simultaneous Localization and Mapping: Toward the Robust-Perception Age. IEEE Trans. Robot. 2016, 32, 1309–1332. [Google Scholar] [CrossRef]
- Kaess, M.; Johannsson, H.; Roberts, R.; Ila, V.; Leonard, J.J.; Dellaert, F. iSAM2: Incremental smoothing and mapping using the Bayes tree. Int. J. Robot. Res. 2012, 31, 217–235. [Google Scholar] [CrossRef]
- Wang, Z.; Wen, Z.; Xia, Q.; Cai, W. Deep Reinforcement Learning Based Multi-UUV Cooperative Control for Target Capturing. In Proceedings of the 2022 IEEE Intl Conf on Dependable, Autonomic and Secure Computing, Intl Conf on Pervasive Intelligence and Computing, Intl Conf on Cloud and Big Data Computing, Intl Conf on Cyber Science and Technology Congress (DASC/PiCom/CBDCom/CyberSciTech), Falerna, Italy, 12–15 September 2022; pp. 1–6. [Google Scholar] [CrossRef]
- Xu, J.; Xie, G.; Tang, J.; Ding, Y.; Liu, W.; Zhang, S.; Li, Y. Never too Cocky to Cooperate: An FIM and RL-based USV-AUV Collaborative System for Underwater Tasks in Extreme Sea Conditions. arXiv 2025, arXiv:2504.14894. [Google Scholar]
- Diao, Y.; Zhang, Y.; Martini, D.D.; Zhao, P.G.; Li, E.L. Task-Oriented Co-Design of Communication, Computing, and Control for Edge-Enabled Industrial Cyber-Physical Systems. arXiv 2025, arXiv:2503.08661. [Google Scholar] [CrossRef]
- He, Z.; Wang, B.; Chen, Y.; Li, H.; Xie, Z.; Tan, K.; Ye, J.; Zhu, Y.; Chen, G. Task-Oriented Communications for Visual Navigation with Edge-Aerial Collaboration in Low Altitude Economy. arXiv 2025, arXiv:2507.03159. [Google Scholar]
- Savkin, A.V.; Verma, S.C.; Anstee, S. Optimal Navigation of an Unmanned Surface Vehicle and an Autonomous Underwater Vehicle Collaborating for Reliable Acoustic Communication with Collision Avoidance. Drones 2022, 6, 27. [Google Scholar] [CrossRef]
- Kang, Y.; Zhao, L.; Cheng, J.; Wu, M.; Fan, X. A Novel Grid SINS/DVL Integrated Navigation Algorithm for Marine Application. Sensors 2018, 18, 364. [Google Scholar] [CrossRef]
- Zhao, L.; Kang, Y.; Cheng, J.; Wu, M. A Fault-Tolerant Polar Grid SINS/DVL/USBL Integrated Navigation Algorithm Based on the Centralized Filter and Relative Position Measurement. Sensors 2019, 19, 3899. [Google Scholar] [CrossRef] [PubMed]
- Yang, H.; Gao, X.; Huang, H.; Li, B.; Jiang, J. A Tightly Integrated Navigation Method of SINS, DVL, and PS Based on RIMM in the Complex Underwater Environment. Sensors 2022, 22, 9479. [Google Scholar] [CrossRef] [PubMed]
- Ding, S.; Zhang, T.; Li, Y.; Xu, S.; Lei, M. Underwater multi-sensor fusion localization with visual-inertial-depth using hybrid residuals and efficient loop closing. Measurement 2024, 238, 115245. [Google Scholar] [CrossRef]
- Shaukat, N.; Moinuddin, M.; Otero, P. Underwater Vehicle Positioning by Correntropy-Based Fuzzy Multi-Sensor Fusion. Sensors 2021, 21, 6165. [Google Scholar] [CrossRef] [PubMed]
- Peng, X.; Qin, Z.; Tao, X.; Lu, J.; Hanzo, L. A Robust Semantic Text Communication System. IEEE Trans. Wirel. Commun. 2024, 23, 11372–11385. [Google Scholar] [CrossRef]
- Grisetti, G.; Kümmerle, R.; Stachniss, C.; Burgard, W. A Tutorial on Graph-Based SLAM. IEEE Intell. Transp. Syst. Mag. 2010, 2, 31–43. [Google Scholar] [CrossRef]
- Zhuang, L.; Chen, X.; Lu, W.; Yan, Y. Graph Matching for Underwater Simultaneous Localization and Mapping Using Multibeam Sonar Imaging. J. Mar. Sci. Eng. 2024, 12, 1859. [Google Scholar] [CrossRef]
- Zhang, L.; Gao, Y.; Guan, L. Optimizing AUV Navigation Using Factor Graphs with Side-Scan Sonar Integration. J. Mar. Sci. Eng. 2024, 12, 313. [Google Scholar] [CrossRef]
- Julier, S.; Uhlmann, J. A non-divergent estimation algorithm in the presence of unknown correlations. In Proceedings of the 1997 American Control Conference (Cat. No.97CH36041), Albuquerque, NM, USA, 4–6 June 1997; Volume 4, pp. 2369–2373. [Google Scholar] [CrossRef]
- Sun, S.; Lin, H.; Ma, J.; Li, X. Multi-sensor distributed fusion estimation with applications in networked systems: A review paper. Inf. Fusion 2017, 38, 122–134. [Google Scholar] [CrossRef]
- Huang, S.; Yamamoto, K. Innovation Sharing Distributed Kalman Filter with Packet Loss. J. Robot. Mechatron. 2024, 36, 680–688. [Google Scholar] [CrossRef]
- Pfaff, F.; Noack, B.; Hanebeck, U.D.; Govaers, F.; Koch, W. Information form distributed Kalman filtering (IDKF) with explicit inputs. In Proceedings of the 2017 20th International Conference on Information Fusion (Fusion), Xi’an, China, 10–13 July 2017; pp. 1–8. [Google Scholar] [CrossRef]
- Mahmoud, M.S. Distributed estimation based on information-based covariance intersection algorithms. Int. J. Adapt. Control Signal Process. 2016, 30, 750–778. [Google Scholar] [CrossRef]
- Akhihiero, D.; Olawoye, U.; Das, S.; Gross, J. Cooperative Localization for GNSS-Denied Subterranean Navigation: A UAV–UGV Team Approach. Navig. J. Inst. Navig. 2024, 71, 139–160. [Google Scholar] [CrossRef]
- Xue, K.; Wu, T. Distributed Consensus of USVs under Heterogeneous UAV-USV Multi-Agent Systems Cooperative Control Scheme. J. Mar. Sci. Eng. 2021, 9, 1314. [Google Scholar] [CrossRef]
- Yin, J.; Wu, M.; Wang, J.; Li, Y. Polar Grid Navigation Algorithm for Unmanned Underwater Vehicles. Sensors 2017, 17, 1599. [Google Scholar] [CrossRef]
- Särkkä, S. Recursive Bayesian Inference on Stochastic Differential Equations. Ph.D. Thesis, Helsinki University of Technology, Espoo, Finland, 2006. [Google Scholar]
- Olfati-Saber, R. Distributed Kalman filtering for sensor networks. In Proceedings of the 2007 46th IEEE Conference on Decision and Control, New Orleans, LA, USA, 12–14 December 2007; pp. 5492–5498. [Google Scholar] [CrossRef]
- Hou, B.; He, Z.; Zhou, X.; Zhou, H.; Li, D.; Wang, J. Maximum Correntropy Criterion Kalman Filter for α-Jerk Tracking Model with Non-Gaussian Noise. Entropy 2017, 19, 648. [Google Scholar] [CrossRef]
- Jwo, D.J.; Chen, Y.L.; Cho, T.S.; Biswal, A. A Robust GPS Navigation Filter Based on Maximum Correntropy Criterion with Adaptive Kernel Bandwidth. Sensors 2023, 23, 9386. [Google Scholar] [CrossRef]
- Fakoorian, S.; Izanloo, R.; Shamshirgaran, A.; Simon, D. Maximum Correntropy Criterion Kalman Filter with Adaptive Kernel Size. In Proceedings of the 2019 IEEE National Aerospace and Electronics Conference (NAECON), Dayton, OH, USA, 15–19 July 2019; pp. 581–584. [Google Scholar] [CrossRef]
- Wang, G.; Gao, Z.; Zhang, Y.; Ma, B. Adaptive Maximum Correntropy Gaussian Filter Based on Variational Bayes. Sensors 2018, 18, 1960. [Google Scholar] [CrossRef]
- Mu, R.; Chu, Y.; Zhang, H.; Liang, H. A multiple-step, randomly delayed, robust Cubature Kalman filter for spacecraft-relative navigation. Aerospace 2023, 10, 289. [Google Scholar] [CrossRef]
- Agarwal, P.; Tipaldi, G.D.; Spinello, L.; Stachniss, C.; Burgard, W. Robust map optimization using dynamic covariance scaling. In Proceedings of the 2013 IEEE International Conference on Robotics and Automation, Karlsruhe, German, 6–10 May 2013; pp. 62–69. [Google Scholar] [CrossRef]
- Liu, X.; Qu, H.; Zhao, J.; Yue, P.; Wang, M. Maximum correntropy unscented Kalman filter for spacecraft relative state estimation. Sensors 2016, 16, 1530. [Google Scholar] [CrossRef]
- Wang, B.; Hu, T. Online gradient descent for kernel-based maximum correntropy criterion. Entropy 2019, 21, 644. [Google Scholar] [CrossRef] [PubMed]
- Xiong, W.; Schindelhauer, C.; So, H.C.; Wang, Z. Maximum correntropy criterion for robust TOA-based localization in NLOS environments. Circuits Syst. Signal Process. 2021, 40, 6325–6339. [Google Scholar] [CrossRef]
- Huang, S.; Yang, T.; Huang, C.F. Multipath correlations in underwater acoustic communication channels. J. Acoust. Soc. Am. 2013, 133, 2180–2190. [Google Scholar] [CrossRef]
- Bhattacharyya, A. On a measure of divergence between two statistical populations defined by their probability distribution. Bull. Calcutta Math. Soc. 1943, 35, 99–110. [Google Scholar]
- Kailath, T. The divergence and Bhattacharyya distance measures in signal selection. IEEE Trans. Commun. Technol. 2003, 15, 52–60. [Google Scholar] [CrossRef]
- Gustafsson, F.; Gustafsson, F. Adaptive Filtering and Change Detection; Wiley: New York, NY, USA, 2000; Volume 1. [Google Scholar]
- Zhang, Z.; Nie, Y.; Yin, L. A Robust Fault Detection Filter for Linear Time-Varying System with Non-Gaussian Noise. arXiv 2025, arXiv:2504.17648. [Google Scholar]
- Feller, W. An Introduction to Probability Theory and Its Applications; John Wiley & Sons: Hoboken, NJ, USA, 1991; Volume 2. [Google Scholar]
- Hussein, I.I.; Roscoe, C.; Wilkins, M.P.; Schumacher, P.W., Jr. Track-to-track association using Bhattacharyya divergence. In Proceedings of the Advanced Maui Optical and Space Surveillance Technologies Conference (AMOS 2015), Wailea, HI, USA, 15–18 September 2015. [Google Scholar]
- Bi, S.; Beer, M.; Zhang, J.; Yang, L.; He, K. Optimization or Bayesian strategy? Performance of the Bhattacharyya distance in different algorithms of stochastic model updating. ASCE-ASME J. Risk Uncertain. Eng. Syst. Part B Mech. Eng. 2021, 7, 020903. [Google Scholar] [CrossRef]
- Davari, N.; Gholami, A.; Shabani, M. Multirate Adaptive Kalman Filter for Marine Integrated Navigation System. J. Navig. 2017, 70, 628–647. [Google Scholar] [CrossRef]
- The MathWorks, Inc. IMU and GPS Fusion for Inertial Navigation. MATLAB & Simulink Documentation. 2025. Available online: https://www.mathworks.com/help/nav/ug/imu-and-gps-fusion-for-inertial-navigation.html (accessed on 8 September 2025).
- Julier, S.; Uhlmann, J. Fusion of time delayed measurements with uncertain time delays. In Proceedings of the American Control Conference, Portland, Oregon, 8–10 June 2005; Volume 6, pp. 4028–4033. [Google Scholar] [CrossRef]
- Abro, G.E.M.; Abdallah, A.M.; Zahid, F.; Ahmed, S. A Comprehensive Review of Next-Gen UAV Swarm Robotics: Optimisation Techniques and Control Strategies for Dynamic Environments. Intell. Autom. Soft Comput. 2025, 40, 99–123. [Google Scholar] [CrossRef]
- Sagar, M.M.; Konara, M.; Picard, N.; Park, K. State-of-the-Art Navigation Systems and Sensors for Unmanned Underwater Vehicles (UUVs). Appl. Mech. 2025, 6, 10. [Google Scholar] [CrossRef]
- Zhang, Y.; Jiang, H.; Bhatt, V.; Nikolaidis, S.; Li, J. Guidance Graph Optimization for Lifelong Multi-Agent Path Finding. arXiv 2024, arXiv:2402.01446. [Google Scholar] [PubMed]
- Holmberg, T.E.; Ioup, E.; Abdelguerfi, M. Knowledge Graph-Based Multi-Agent Path Planning in Dynamic Environments using WAITR. arXiv 2024, arXiv:2412.1946. [Google Scholar]
- Torrence, C.; Compo, G.P. A Practical Guide to Wavelet Analysis. Bull. Am. Meteorol. Soc. 1998, 79, 61–78. [Google Scholar] [CrossRef]
- Wang, J.; Xu, T.; Wang, Z. Adaptive Robust Unscented Kalman Filter for AUV Acoustic Navigation. Sensors 2020, 20, 60. [Google Scholar] [CrossRef]
- Wei, L.; Sun, M.; Peng, Z.; Guo, J.; Cui, J.; Qin, B.; Cui, J.H. A Channel-Aware AUV-Aided Data Collection Scheme Based on Deep Reinforcement Learning. J. Mar. Sci. Eng. 2025, 13, 1460. [Google Scholar] [CrossRef]
- Liu, J.; Xu, Y.; Song, S.; Jiang, L. Reducing AUV Energy Consumption Through Dynamic Sensor Directions Switching via Deep Reinforcement Learning. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 18843–18851. [Google Scholar]
- Yu, T.; Zhang, Q.; Liu, T. Reinforcement learning approaches in the motion systems of autonomous underwater vehicles. Appl. Ocean Res. 2025, 161, 104682. [Google Scholar] [CrossRef]
- Dermin, X.; Lei, G. Wavelet transform and its application to autonomous underwater vehicle control system fault detection. In Proceedings of the 2000 International Symposium on Underwater Technology (Cat. No.00EX418), Online, 26–26 May 2000; pp. 99–104. [Google Scholar] [CrossRef]
- Fernandes, M.; Sahoo, S.R.; Kothari, M. Cooperative Localization for Autonomous Underwater Vehicles—A comprehensive review. arXiv 2023, arXiv:2307.06189. [Google Scholar]
- Yuan, K.; Wang, Z.J. A Simple Self-Supervised IMU Denoising Method for Inertial Aided Navigation. IEEE Robot. Autom. Lett. 2023, 8, 944–950. [Google Scholar] [CrossRef]
- Xie, H.; Qin, Z.; Tao, X.; Letaief, K.B. Task-Oriented Multi-User Semantic Communications. IEEE J. Sel. Areas Commun. 2022, 40, 2584–2597. [Google Scholar] [CrossRef]
- Gündüz, D.; Qin, Z.; Aguerri, I.E.; Dhillon, H.S.; Yang, Z.; Yener, A.; Wong, K.K.; Chae, C.B. Beyond Transmitting Bits: Context, Semantics, and Task-Oriented Communications. IEEE J. Sel. Areas Commun. 2023, 41, 5–41. [Google Scholar] [CrossRef]
- Hu, Q.; Zhang, G.; Qin, Z.; Cai, Y.; Yu, G.; Li, G.Y. Robust Semantic Communications With Masked VQ-VAE Enabled Codebook. IEEE Trans. Wirel. Commun. 2023, 22, 8707–8722. [Google Scholar] [CrossRef]
- Getu, T.M.; Saad, W.; Kaddoum, G.; Bennis, M. Performance Limits of a Deep Learning-Enabled Text Semantic Communication Under Interference. IEEE Trans. Wirel. Commun. 2024, 23, 10213–10228. [Google Scholar] [CrossRef]
- Xin, G.; Fan, P.; Letaief, K.B. Semantic Communication: A Survey of Its Theoretical Development. Entropy 2024, 26, 102. [Google Scholar] [CrossRef]
- Shao, J.; Mao, Y.; Zhang, J. Task-Oriented Communication for Multidevice Cooperative Edge Inference. IEEE Trans. Wirel. Commun. 2023, 22, 73–87. [Google Scholar] [CrossRef]
- Salvato, E.; Fenu, G.; Medvet, E.; Pellegrino, F.A. Crossing the Reality Gap: A Survey on Sim-to-Real Transferability of Robot Controllers in Reinforcement Learning. IEEE Access 2021, 9, 153171–153187. [Google Scholar] [CrossRef]
- Palomeras, N.; Ridao, P. Autonomous Underwater Vehicle Docking Under Realistic Assumptions Using Deep Reinforcement Learning. Drones 2024, 8, 673. [Google Scholar] [CrossRef]
- Alajlan, N.N.; Ibrahim, D.M. TinyML: Enabling of Inference Deep Learning Models on Ultra-Low-Power IoT Edge Devices for AI Applications. Micromachines 2022, 13, 851. [Google Scholar] [CrossRef]
- Heydari, S.; Mahmoud, Q.H. Tiny Machine Learning and On-Device Inference: A Survey of Applications, Challenges, and Future Directions. Sensors 2025, 25, 3191. [Google Scholar] [CrossRef] [PubMed]
- Jamming and Spoofing: Two Threats for Your UAS GNC System. 2024. Available online: https://www.uavnavigation.com/company/blog/jamming-and-spoofing-two-threats-your-uas-gnc-system (accessed on 14 July 2025).
- Hickling, T.; Hogan, M.; Tammam, A.; Aouf, N. Deep Reinforcement Learning based Autonomous Decision-Making for Cooperative UAVs: A Search and Rescue Real World Application. arXiv 2025, arXiv:2502.20326. [Google Scholar] [CrossRef]
- Polar Challenge: Towards Long-Term Under-Ice Observations in the Polar Regions. 2016. Available online: https://www.unesco.org/en/articles/polar-challenge-towards-long-term-under-ice-observations-polar-regions (accessed on 14 July 2025).
- Alrefaei, F.; Alzahrani, A.; Song, H.; Alrefaei, S. A Survey on the Jamming and Spoofing attacks on the Unmanned Aerial Vehicle Networks. In Proceedings of the 2022 IEEE International IOT, Electronics and Mechatronics Conference (IEMTRONICS), Toronto, ON, Canada, 1–4 June 2022; pp. 1–7. [Google Scholar] [CrossRef]
- Meheretu, S.E.; Nigussie, E.; Hailesilassie, S.Y.; Gebremeskel, G.B. A Critical Analysis of Spoofing and Jamming Approaches in UAV Navigation. Research Square; PREPRINT (Version 1). 2024. Available online: https://www.researchsquare.com/article/rs-5370811/v1 (accessed on 8 September 2025).
- Friess, C.; Niculescu, V.; Polonelli, T.; Magno, M.; Benini, L. Fully Onboard SLAM for Distributed Mapping With a Swarm of Nano-Drones. IEEE Internet Things J. 2024, 11, 32363–32380. [Google Scholar] [CrossRef]
- Barker, L.D.L.; Jakuba, M.V.; Bowen, A.D.; German, C.R.; Maksym, T.; Mayer, L.; Boetius, A.; Dutrieux, P.; Whitcomb, L.L. Scientific Challenges and Present Capabilities in Underwater Robotic Vehicle Design and Navigation for Oceanographic Exploration Under-Ice. Remote Sens. 2020, 12, 2588. [Google Scholar] [CrossRef]
- Freitag, L.; Koski, P.; Morozov, A.; Singh, S.; Partan, J. Acoustic communications and navigation under Arctic ice. In Proceedings of the 2012 Oceans, Yeosu, Republic of Korea, 21–24 May 2012; pp. 1–8. [Google Scholar] [CrossRef]
- Paturel, Y.; Lacambre, J.B.; Patin, F.; Moynagh, C. Inertial navigation at high latitude: Trials and test results. In Proceedings of the OCEANS 2015-MTS/IEEE Washington, Washington, DC, USA, 19–22 October 2015; pp. 1–5. [Google Scholar] [CrossRef]
- Yan, Z.; Wang, L.; Wang, T.; Yang, Z.; Chen, T.; Xu, J. Polar Cooperative Navigation Algorithm for Multi-Unmanned Underwater Vehicles Considering Communication Delays. Sensors 2018, 18, 1044. [Google Scholar] [CrossRef] [PubMed]
- Fan, S.; Bose, N.; Liang, Z. Polar AUV Challenges and Applications: A Review. Drones 2024, 8, 413. [Google Scholar] [CrossRef]
- Miranda, M.; Takei, N.; Miyazawa, Y.; Kozuma, M. Multi-Harmonic Modulation in a Fiber-Optic Gyroscope. Sensors 2023, 23, 4442. [Google Scholar] [CrossRef]
- Lunkov, A.; Sidorov, D.; Petnikov, V. Horizontal Refraction of Acoustic Waves in Shallow-Water Waveguides Due to an Inhomogeneous Bottom Structure. J. Mar. Sci. Eng. 2021, 9, 1269. [Google Scholar] [CrossRef]
- Zhang, Q.; Kim, J. Feature-Based Global Localization for Underwater Terrain Aided Navigation Using Bag of Words. In Proceedings of the OCEANS 2024, Singapore, 14–18 April 2024; pp. 1–5. [Google Scholar] [CrossRef]
- Wang, R.; Wang, J.; Li, Y.; Ma, T.; Zhang, X. Research Advances and Prospects of Underwater Terrain-Aided Navigation. Remote Sens. 2024, 16, 2560. [Google Scholar] [CrossRef]
- Wu, S.; Li, Z.; Qin, J.; Wang, M.; Li, W. The Effects of Sound Speed Profile to the Convergence Zone in Deep Water. J. Mar. Sci. Eng. 2022, 10, 424. [Google Scholar] [CrossRef]
- Huang, W.; Zhou, J.; Gao, F.; Wang, J.; Xu, T. Experimental Results of Underwater Sound Speed Profile Inversion by Few-Shot Multi-Task Learning. Remote Sens. 2024, 16, 167. [Google Scholar] [CrossRef]
- Zhao, S.; Liu, H.; Xue, S.; Wang, Z.; Xiao, Z. Two-Step Correction Based on In-Situ Sound Speed Measurements for USBL Precise Real-Time Positioning. Remote Sens. 2023, 15, 5046. [Google Scholar] [CrossRef]
- Bhatt, E.C.; Viquez, O.; Schmidt, H. Under-ice acoustic navigation using real-time model-aided range estimationa). J. Acoust. Soc. Am. 2022, 151, 2656–2671. [Google Scholar] [CrossRef]
- Evers, C.; Naylor, P.A. Acoustic SLAM. IEEE/ACM Trans. Audio Speech Lang. Process. 2018, 26, 1484–1498. [Google Scholar] [CrossRef]
- Granström, K.; Fatemi, M.; Svensson, L. Poisson Multi-Bernoulli Mixture Conjugate Prior for Multiple Extended Target Filtering. IEEE Trans. Aerosp. Electron. Syst. 2020, 56, 208–225. [Google Scholar] [CrossRef]
- Mullane, J.; Vo, B.N.; Adams, M.D.; Vo, B.T. A Random-Finite-Set Approach to Bayesian SLAM. IEEE Trans. Robot. 2011, 27, 268–282. [Google Scholar] [CrossRef]
- Zhu, Z.; Zhang, L.; Liu, L.; Wu, D.; Bai, S.; Ren, R.; Geng, W. An Efficient Multi-AUV Cooperative Navigation Method Based on Hierarchical Reinforcement Learning. J. Mar. Sci. Eng. 2023, 11, 1863. [Google Scholar] [CrossRef]
- Yang, L.; Zhao, S.; Wang, X.; Shen, P.; Zhang, T. Deep-Sea Underwater Cooperative Operation of Manned/Unmanned Submersible and Surface Vehicles for Different Application Scenarios. J. Mar. Sci. Eng. 2022, 10, 909. [Google Scholar] [CrossRef]
- Ferri, G.; Paoletti, A.; Orlando, G. Cooperative robotic networks for underwater surveillance: An information-theoretic perspective. IET Radar, Sonar Navig. 2017, 11, 755–766. [Google Scholar] [CrossRef]
- Wang, X.; Fan, X.; Shi, P.; Ni, J.; Zhou, Z. An Overview of Key SLAM Technologies for Underwater Scenes. Remote Sens. 2023, 15, 2496. [Google Scholar] [CrossRef]
- Curado Teixeira, F.; Quintas, J.; Pascoal, A. AUV terrain-aided navigation using a Doppler velocity logger. Annu. Rev. Control 2016, 42, 166–176. [Google Scholar] [CrossRef]
- Anonsen, K.; Hallingstad, O. Terrain Aided Underwater Navigation Using Point Mass and Particle Filters. In Proceedings of the 2006 IEEE/ION Position, Location, And Navigation Symposium, Coronado, CA, USA, 24–27 April 2006; pp. 1027–1035. [Google Scholar] [CrossRef]
- Eustice, R.M.; Pizarro, O.; Singh, H. Visually Augmented Navigation for Autonomous Underwater Vehicles. IEEE J. Ocean. Eng. 2008, 33, 103–122. [Google Scholar] [CrossRef]
- Ma, T.; Ding, S.; Li, Y.; Fan, J. A review of terrain aided navigation for underwater vehicles. Ocean Eng. 2023, 281, 114779. [Google Scholar] [CrossRef]
- Yang, J.; Chen, Y.; Du, S.; Chen, B.; Principe, J.C. IA-LSTM: Interaction-Aware LSTM for Pedestrian Trajectory Prediction. IEEE Trans. Cybern. 2024, 54, 3904–3917. [Google Scholar] [CrossRef] [PubMed]
- Mao, G.; Fidan, B. (Eds.) Localization Algorithms and Strategies for Wireless Sensor Networks; IGI Global: Hershey, PA, USA, 2009. [Google Scholar]
- Julier, S.J.; Uhlmann, J.K. A New Extension of the Kalman Filter to Nonlinear Systems. In Proceedings of the SPIE-The International Society for Optical Engineering, Orlando, FL, USA, 20–25 April 1997; Volume 3068, pp. 182–193. [Google Scholar] [CrossRef]
- Pasek, P.; Kaniewski, P. A review of consensus algorithms used in Distributed State Estimation for UAV swarms. In Proceedings of the 2022 IEEE 16th International Conference on Advanced Trends in Radioelectronics, Telecommunications and Computer Engineering (TCSET), Lviv-Slavske, Ukraine, 22–26 February 2022; pp. 472–477. [Google Scholar] [CrossRef]
- Chu, Z.; Wang, F.; Lei, T.; Luo, C. Path Planning Based on Deep Reinforcement Learning for Autonomous Underwater Vehicles Under Ocean Current Disturbance. IEEE Trans. Intell. Veh. 2023, 8, 108–120. [Google Scholar] [CrossRef]
- Fang, Z.; Wang, J.; Ma, Y.; Tao, Y.; Deng, Y.; Chen, X.; Fang, Y. R-ACP: Real-Time Adaptive Collaborative Perception Leveraging Robust Task-Oriented Communications. arXiv 2024, arXiv:2410.04168. [Google Scholar] [CrossRef]
- Abci, B.; Nader, J.; El Badaoui El Najjar, M.; Cocquempot, V. Fault-Tolerant Multi-sensor Fusion and Thresholding Based on the Bhattacharyya Distance with Application to a Multi-robot System. In Proceedings of the 15th European Workshop on Advanced Control and Diagnosis, Bologna, Italy, 21–22 November 2018; Springer: Berlin/Heidelberg, Germany, 2018; pp. 347–364. [Google Scholar]
- Venanzi, M.; Rogers, A.; Jennings, N.R. Trust-based fusion of untrustworthy information in crowdsourcing applications. In Proceedings of the 2013 International Conference on Autonomous Agents and Multi-Agent Systems, Richland, SC, USA, 6–10 May 2013; AAMAS ’13; pp. 829–836. [Google Scholar]
- Xiong, M.; Zhuo, J.; Dong, Y.; Jing, X. A Layout Strategy for Distributed Barrage Jamming against Underwater Acoustic Sensor Networks. J. Mar. Sci. Eng. 2020, 8, 252. [Google Scholar] [CrossRef]
- Diamant, R.; Casari, P.; Tomasin, S. Cooperative Authentication in Underwater Acoustic Sensor Networks. IEEE Trans. Wirel. Commun. 2019, 18, 954–968. [Google Scholar] [CrossRef]
- Yang, G.; Dai, L.; Wei, Z. Challenges, Threats, Security Issues and New Trends of Underwater Wireless Sensor Networks. Sensors 2018, 18, 3907. [Google Scholar] [CrossRef]
- Osanaiye, O.; Alfa, A.S.; Hancke, G.P. A Statistical Approach to Detect Jamming Attacks in Wireless Sensor Networks. Sensors 2018, 18, 1691. [Google Scholar] [CrossRef]
- Wang, Q.; Peng, B.; Xie, P.; Cheng, C. A Novel Data-Driven Fault Detection Method Based on Stable Kernel Representation for Dynamic Systems. Sensors 2023, 23, 5891. [Google Scholar] [CrossRef]
- Cao, L.; Sheng, W.; Zhang, F.; Du, K.; Fu, C.; Song, P. Face Manipulation Detection Based on Supervised Multi-Feature Fusion Attention Network. Sensors 2021, 21, 8181. [Google Scholar] [CrossRef] [PubMed]
- Leland, K.; Taylor, C.; Graas, F.v. Factor-Graph Optimization for Robust Navigation via High-Precision GNSS/IMU Corroboration. In Proceedings of the 2025 IEEE/ION Position, Location and Navigation Symposium (PLANS), Salt Lake City, UT, USA, 28 April–1 May 2025; pp. 97–104. [Google Scholar] [CrossRef]
- Fakoorian, S.; Mohammadi, A.; Azimi, V.; Simon, D. Robust Kalman-Type Filter for Non-Gaussian Noise: Performance Analysis With Unknown Noise Covariances. J. Dyn. Syst. Meas. Control 2019, 141, 091011. [Google Scholar] [CrossRef]
- Wen, W.; Kan, Y.C.; Hsu, L.T. Performance Comparison of GNSS/INS Integrations Based on EKF and Factor Graph Optimization. In Proceedings of the 32nd International Technical Meeting of the Satellite Division of The Institute of Navigation (ION GNSS+ 2019), Miami, FL, USA, 16–20 September 2019; pp. 3019–3032. [Google Scholar]
- Olfati-Saber, R.; Fax, J.A.; Murray, R.M. Consensus and Cooperation in Networked Multi-Agent Systems. Proc. IEEE 2007, 95, 215–233. [Google Scholar] [CrossRef]
- Huang, Y.; Zhang, Y.; Xu, B.; Wu, Z.; Chambers, J.A. A New Adaptive Extended Kalman Filter for Cooperative Localization. IEEE Trans. Aerosp. Electron. Syst. 2018, 54, 353–368. [Google Scholar] [CrossRef]
- Xu, B.; Wang, X.; Zhang, J.; Guo, Y.; Razzaqi, A.A. A Novel Adaptive Filtering for Cooperative Localization Under Compass Failure and Non-Gaussian Noise. IEEE Trans. Veh. Technol. 2022, 71, 3737–3749. [Google Scholar] [CrossRef]
- Zhang, L.; Guay, M.; Wang, S.; Lu, M. Completely Distributed State Estimation for Jointly Observable Uncertain Linear Systems. IEEE Trans. Autom. Control 2025, 70, 7063–7070. [Google Scholar] [CrossRef]
- Singh, R.K.; Saha, J.; Bhaumik, S. Maximum correntropy polynomial chaos Kalman filter for underwater navigation. Digit. Signal Process. 2024, 155, 104774. [Google Scholar] [CrossRef]
- Bao, J.; Mu, X.; Yu, X.; Zhu, Z.; Qin, H. Outlier-Robust Underwater Navigation Using a Dual-Robust-Kernel Kalman Filter. IEEE Signal Process. Lett. 2025, 32, 1485–1489. [Google Scholar] [CrossRef]
- Li, P.; Sun, X.; Chen, Z.; Zhang, X.; Yan, T.; He, B. A Robust and Adaptive AUV Integrated Navigation Algorithm Based on a Maximum Correntropy Criterion. Electronics 2024, 13, 2426. [Google Scholar] [CrossRef]
- Shi, B.; Lin, W.; Ouyang, W.; Shen, C.; Sun, S.; Sun, Y.; Sun, L. BA-CLM: A Globally Consistent 3D LiDAR Mapping Based on Bundle Adjustment Cost Factors. Sensors 2024, 24, 5554. [Google Scholar] [CrossRef]
- Xu, B.; Wang, X.; Zhang, J.; Razzaqi, A.A. Maximum correntropy delay Kalman filter for SINS/USBL integrated navigation. ISA Trans. 2021, 117, 274–287. [Google Scholar] [CrossRef]
- Fan, Y.; Zhang, Y.; Wang, G.; Wang, X.; Li, N. Maximum Correntropy Based Unscented Particle Filter for Cooperative Navigation with Heavy-Tailed Measurement Noises. Sensors 2018, 18, 3183. [Google Scholar] [CrossRef]
- Chen, W.; Chi, W.; Ji, S.; Ye, H.; Liu, J.; Jia, Y.; Yu, J.; Cheng, J. A survey of autonomous robots and multi-robot navigation: Perception, planning and collaboration. Biomim. Intell. Robot. 2025, 5, 100203. [Google Scholar] [CrossRef]
- Paull, L.; Saeedi, S.; Seto, M.; Li, H. AUV Navigation and Localization: A Review. IEEE J. Ocean. Eng. 2014, 39, 131–149. [Google Scholar] [CrossRef]
- Chen, S.; Wang, N.; Chen, T.; Yang, Y.; Tian, J. Confidence check-adaptive federated Kalman filter and its application in underwater vehicle integrated navigation. Chin. J. Ship Res. 2022, 17, 203–211. [Google Scholar] [CrossRef]
- Paull, L.; Seto, M.; Leonard, J.J. Decentralized cooperative trajectory estimation for autonomous underwater vehicles. In Proceedings of the 2014 IEEE/RSJ International Conference on Intelligent Robots and Systems, Chicago, IL, USA, 14–18 September 2014; pp. 184–191. [Google Scholar] [CrossRef]
- Zhu, J.; Kia, S.S. Cooperative Localization Under Limited Connectivity. IEEE Trans. Robot. 2019, 35, 1523–1530. [Google Scholar] [CrossRef]
- Acarer, T. Energy-Aware Path Planning by Autonomous Underwater Vehicle in Underwater Wireless Sensor Networks for Safer Maritime Transportation. Int. J. Interact. Multimed. Artif. Intell. 2024, 8, 15–27. [Google Scholar] [CrossRef]
- Thompson, F.; Galeazzi, R.; Guihen, D. Field trials of an energy-aware mission planner implemented on an autonomous surface vehicle. J. Field Robot. 2020, 37, 1040–1062. [Google Scholar] [CrossRef]
- Wang, C.; Cheng, C.; Yang, D.; Pan, G.; Zhang, F. Underwater AUV Navigation Dataset in Natural Scenarios. Electronics 2023, 12, 3788. [Google Scholar] [CrossRef]
- Radulov, N.; Zhang, Y.; Bujanca, M.; Ye, R.; Luján, M. A Framework for Reproducible Benchmarking and Performance Diagnosis of SLAM Systems. In Proceedings of the 2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), Abu Dhabi, United Arab Emirates, 14–18 October 2024; pp. 14225–14232. [Google Scholar] [CrossRef]
- Álvarez Tuñón, O.; Marnet, L.R.; Aubard, M.; Antal, L.; Costa, M.; Brodskiy, Y. SubPipe: A Submarine Pipeline Inspection Dataset for Segmentation and Visual-inertial Localization. In Proceedings of the OCEANS 2024, Singapore, 14–18 April 2024; pp. 1–7. [Google Scholar] [CrossRef]
- Cao, W.; Chen, K.; Cheng, E. Joint optimization of AoI and energy for AUV-assisted data collection in underwater acoustic sensor networks. Front. Mar. Sci. 2025, 12, 1580751. [Google Scholar] [CrossRef]
- Dai, Q.; Wan, R.; Han, S.Y.; Xiao, G.R. A novel adaptive Gaussian sum cubature Kalman filter with time-varying non-Gaussian noise for GNSS/SINS tightly coupled integrated navigation system. Front. Astron. Space Sci. 2025, 12, 1436270. [Google Scholar] [CrossRef]
- Chen, K.; Zhang, P.; You, L.; Sun, J. Research on Kalman Filter Fusion Navigation Algorithm Assisted by CNN-LSTM Neural Network. Appl. Sci. 2024, 14, 5493. [Google Scholar] [CrossRef]
- Zheng, S.; Liu, S.; Wang, L. Event-triggered distributed optimization for model-free multi-agent systems. Front. Inf. Technol. Electron. Eng. 2024, 25, 214–224. [Google Scholar] [CrossRef]
- Tabatabaei, H.; Gallo, A.J.; Al-Dabbagh, A.W. Secure state and output estimation for accommodation of false data injection attacks in large-scale systems. Automatica 2025, 180, 112460. [Google Scholar] [CrossRef]
- Bidel, Y.; Zahzam, N.; Bresson, A.; Blanchard, C.; Cadoret, M.; Olesen, A.V.; Forsberg, R. Absolute airborne gravimetry with a cold atom sensor. J. Geod. 2020, 94, 20. [Google Scholar] [CrossRef]
- Canuel, B.; Leduc, F.; Holleville, D.; Gauguet, A.; Fils, J.; Virdis, A.; Clairon, A.; Dimarcq, N.; Bordé, C.J.; Landragin, A.; et al. Six-Axis Inertial Sensor Using Cold-Atom Interferometry. Phys. Rev. Lett. 2006, 97, 010402. [Google Scholar] [CrossRef] [PubMed]
- Santoni de Sio, F.; van den Hoven, J. Meaningful Human Control over Autonomous Systems: A Philosophical Account. Front. Robot. AI 2018, 5, 15. [Google Scholar] [CrossRef]





| Characterization | Impact on CN | Typical Values/Range | Common Modeling Techniques and Key References | 
|---|---|---|---|
| Propagation delay | State information is asynchronous, and observations are out of date | Approx. 0.67 ms/m | Deterministic models (), integral models, stochastic processes (Gaussian processes, Markov chains) [21], KDE [22] | 
| Bandwidth constraints | Limited amount of communication data, low frequency of information updates | Data rate: typically, a few kbps; Update frequency: often <1 Hz | Shannon capacity model [29], Task-Oriented Communication (TOC) [29] | 
| Multipath fading | Interference, dramatic fluctuations in signal strength, and generation of non-Gaussian heavy-tailed models | Delay extension up to 100–500 ms in deep water or complex terrain | Ray tracing (Bellhop [27]), Rayleigh/Rice fading models [30] | 
| Doppler shift | Carrier frequency shift, synchronization difficulties | 1 ms relative velocity at 1 kHz center frequency results in ∼1 Hz frequency shift | Linear frequency shift model, Doppler effect model [8] | 
| Time-varying | Rapidly changing channel characteristics and high adaptive algorithm requirements | Second-to-minute variations, strong correlation with waves, tides, etc. | Time-varying impulse response model, autocorrelation function [31] | 
| Packet loss | Loss of cooperative information | 5–30% (depending on environment) | Bernoulli processes, Gilbert-Elliott model [22] | 
| Operational Scenarios | Key Navigation and Communication Challenges | Cutting-Edge Strategies/Architectures | Key References | 
|---|---|---|---|
| Heterogeneous Fleets (UUV-USV-AUV) | Data fusion between different sensor modalities; Maintaining formation with diverse vehicle dynamics; Communication management. | Tightly coupled fusion architectures; Use of USV as a “mothership” for GNSS reference and communication relay; Adaptive control algorithms. | [50,65,119,124,134] | 
| Polar Region Operations | Meridian convergence rendering lat/lon unusable; Unreliable magnetic compass for heading; Severe acoustic multipath from ice canopy. | Polar stereographic grid frames and Grid North for geodetic reference; High-grade inertial sensors (FOG/RLG); Advanced multipath compensation techniques. | [65,119,124,135,136] | 
| Deep Sea/Complex Terrain | Highly variable and uncertain SSP; Feature-sparse environments for SLAM; Extreme multipath in canyons. | Online SSP estimation for adaptive acoustic modeling; Advanced Data Association (DA) methods like JPDA and PMBM filters for robust acoustic SLAM. | [124,136,137,138,139] | 
| Algorithm Category | Accuracy (Position RMSE) | Relative Comp. Complexity | Comm. Load | Robustness (vs. Non-Gaussian Noise) | Scalability (Complexity Growth) | 
|---|---|---|---|---|---|
| Nominal (m) | DVL 1 Partial Failure (m) | ||||
| EKF (Baseline) | 2.5 | >25.0 | 1.0× | Medium | Low | 
| AKF | 1.8 | >20.0 | ∼1.5× | Medium | Medium | 
| Information Filter (IF) | 2.5 | >25.0 | 1.0× | Low | High | 
| Consensus Filter | 2.0 | ∼18.0 | ∼1.8× | High | High | 
| MCC-KF | 1.5 | ∼10.0 | ∼2.0× | High | Very High | 
| Wavelet-aided Fusion | 1.2 | ∼8.0 | ∼2.5× | Medium | High | 
| Factor Graph (Sliding Window) | 0.8 | 1.0 | >3.0× | High | High | 
| Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. | 
© 2025 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Li, S.; López-Benítez, M.; Lim, E.G.; Ma, F.; Cao, M.; Yu, L.; Qin, X. Enabling Cooperative Autonomy in UUV Clusters: A Survey of Robust State Estimation and Information Fusion Techniques. Drones 2025, 9, 752. https://doi.org/10.3390/drones9110752
Li S, López-Benítez M, Lim EG, Ma F, Cao M, Yu L, Qin X. Enabling Cooperative Autonomy in UUV Clusters: A Survey of Robust State Estimation and Information Fusion Techniques. Drones. 2025; 9(11):752. https://doi.org/10.3390/drones9110752
Chicago/Turabian StyleLi, Shuyue, Miguel López-Benítez, Eng Gee Lim, Fei Ma, Mengze Cao, Limin Yu, and Xiaohui Qin. 2025. "Enabling Cooperative Autonomy in UUV Clusters: A Survey of Robust State Estimation and Information Fusion Techniques" Drones 9, no. 11: 752. https://doi.org/10.3390/drones9110752
APA StyleLi, S., López-Benítez, M., Lim, E. G., Ma, F., Cao, M., Yu, L., & Qin, X. (2025). Enabling Cooperative Autonomy in UUV Clusters: A Survey of Robust State Estimation and Information Fusion Techniques. Drones, 9(11), 752. https://doi.org/10.3390/drones9110752
 
        




 
       