Surfel-LIO: Fast LiDAR-Inertial Odometry with Pre-computed Surfels and Hierarchical Z-order Voxel Hashing
Seungwon Choi, Dong-Gyu Park, Seo-Yeon Hwang, Tae-Wan Kim
TL;DR
Surfel-LIO introduces a two-level hierarchical voxel map (hVox) with pre-computed surfels and Z-order hashing to achieve near-constant-time correspondence and plane estimation in LiDAR-inertial odometry. By storing surfel geometry at map update time and using cache-friendly Morton-encoded hashing, it eliminates runtime neighbor searches and repeated plane fitting during IEKF iterations. Experimental results on the M3DGR dataset show substantial speedups over Fast-LIO2 and Faster-LIO with comparable pose accuracy, highlighting practical gains for real-time systems. The approach is released publicly to support reproducibility and further research.
Abstract
LiDAR-inertial odometry (LIO) is an active research area, as it enables accurate real-time state estimation in GPS-denied environments. Recent advances in map data structures and spatial indexing have significantly improved the efficiency of LIO systems. Nevertheless, we observe that two aspects may still leave room for improvement: (1) nearest neighbor search often requires examining multiple spatial units to gather sufficient points for plane fitting, and (2) plane parameters are typically recomputed at every iteration despite unchanged map geometry. Motivated by these observations, we propose Surfel-LIO, which employs a hierarchical voxel structure (hVox) with pre-computed surfel representation. This design enables O(1) correspondence retrieval without runtime neighbor enumeration or plane fitting, combined with Z-order curve encoding for cache-friendly spatial indexing. Experimental results on the M3DGR dataset demonstrate that our method achieves significantly faster processing speed compared to recent state-of-the-art methods while maintaining comparable state estimation accuracy. Our implementation is publicly available at https://github.com/93won/lidar_inertial_odometry.
