Deep Ordinal Regression Network for Monocular Depth Estimation
Huan FuMingming GongChaohui WangKayhan BatmanghelichDacheng Tao
Presents an ordinal regression framework for monocular depth estimation that combines spacing-increasing discretization with a multi-scale architecture to achieve faster training convergence and superior accuracy across major benchmarks.
Estimating three-dimensional distance from a single two-dimensional image is a critical capability for autonomous driving, robotics, and scene understanding. However, single-image depth estimation is inherently ambiguous, as many distinct physical environments can generate the exact same two-dimensional image. Conventional deep learning methods treat this challenge as a standard continuous regression task, which frequently suffers from slow training convergence and poor local solutions. Furthermore, existing architectures rely on aggressive spatial pooling that drastically degrades feature resolution, requiring complicated and computationally heavy reconstruction modules to recover fine spatial details.
The article introduces and evaluates the Deep Ordinal Regression Network to demonstrate that reframing depth prediction as an ordinal classification problem—paired with an efficient, high-resolution network architecture—substantially improves accuracy and computational efficiency over conventional regression-based systems.
To accomplish this, the authors designed a novel formulation termed spacing-increasing discretization, which divides continuous distances into discrete bins whose intervals grow larger at greater distances to reflect increasing physical measurement uncertainty. The system predicts these ordered intervals using an ordinal regression training loss that penalizes predictions increasingly as they diverge from true values. The underlying neural network eliminates resolution loss by using dilated convolutions to preserve spatial details without downsampling, incorporates parallel multi-scale feature modules, and introduces a lightweight full-image encoder. The model was trained and benchmarked across four standard indoor and outdoor datasets: KITTI, ScanNet, Make3D, and NYU Depth v2.
The findings establish that the proposed approach consistently outperforms existing methods across all evaluated benchmarks, improving accuracy metrics by approximately 5% to 30%. On the outdoor KITTI dataset, the model reduced root mean squared error from around 4.62–7.16 meters in baseline systems down to 2.73 meters, while achieving an accuracy rate of 93.2% within the strictest evaluation threshold. On indoor data such as NYU Depth v2, root mean squared error decreased from roughly 0.57–0.64 meters to 0.51 meters. The ablation analyses confirmed that spacing-increasing discretization outperforms uniform spacing and continuous regression losses, and that the proposed full-image encoder matches or exceeds traditional full-image encoders while reducing parameter requirements by over 90% (from approximately 753 million parameters to 51 million).
These results demonstrate that transforming continuous regression into an ordinal ranking framework provides superior optimization stability and faster convergence without sacrificing precision. By coupling this mathematical framing with a streamlined network architecture, vision systems can achieve sharper depth maps at significantly lower computational and memory overhead. For engineering and deployment pipelines, this reduction in complexity mitigates training risks, lowers runtime resource demands, and enhances safety in critical perception tasks such as obstacle localization.
Based on these outcomes, teams developing monocular depth perception systems should adopt ordinal regression formulations and spacing-increasing discretization strategies over standard continuous loss metrics. The article also suggests exploring alternative depth approximations and expanding the ordinal regression framework to broader dense visual prediction problems, such as surface normal estimation or semantic segmentation.
The primary limitations of this study relate to fixed discrete interval bounds and evaluation restricted to the tested benchmark environments and sensor resolutions. Nonetheless, the consistent state-of-the-art results across both indoor and outdoor datasets, as well as victory in the Robust Vision Challenge 2018, provide high confidence in the method's effectiveness.
- Paper: Depth Map Prediction from a Single Image using a Multi-Scale Deep Network, David Eigen et al. (2014). This seminal work establishes deep regression frameworks and benchmark protocols for single-image depth estimation that the source paper directly improves upon.
- Paper: Predicting Depth, Surface Normals and Semantic Labels with a Common Multi-scale Convolutional Architecture, David Eigen et al. (2014). It introduces foundational multi-scale convolutional architectures for single-image geometry prediction that motivated the multi-scale design and regression formulations evaluated in the source.
- Paper: DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs, Liang-Chieh Chen et al. (2016). It details atrous convolutions and multi-scale pooling modules designed to eliminate spatial downsampling, which directly inspires the parallel multi-scale feature extractor in the source.
- Paper: Unsupervised Monocular Depth Estimation with Left-Right Consistency, Clément Godard et al. (2016). This paper establishes the standardized unsupervised and supervised single-image depth evaluation benchmarks that serve as primary baselines in the source.
- Paper: Indoor Segmentation and Support Inference from RGBD Images, N. Silberman et al. (2012). It introduces the NYU Depth v2 benchmark dataset, providing the core indoor training and evaluation ground truth utilized throughout the source paper.
- Paper: Fully convolutional networks for semantic segmentation, Jonathan Long et al. (2015). It introduces fully convolutional networks for dense pixel-level prediction, providing the underlying paradigm that the source adapts for dense ordinal depth regression.
- Paper: RefineNet: Multi-path Refinement Networks for High-Resolution Semantic Segmentation, Guosheng Lin et al. (2016). It exemplifies the multi-layer deconvolution and skip-connection networks whose computational complexity the source explicitly seeks to circumvent.
- Paper: Towards Robust Monocular Depth Estimation: Mixing Datasets for Zero-Shot Cross-Dataset Transfer, René Ranftl et al. (2019). This work advances beyond single-dataset supervised depth regression by introducing scale- and shift-invariant losses for robust zero-shot cross-dataset transfer.
- Paper: Digging Into Self-Supervised Monocular Depth Estimation, Clément Godard et al. (2018). It extends self-supervised monocular depth estimation architectures to narrow the performance gap with fully supervised models like DORN.
- Paper: Depth Anything: Unleashing the Power of Large-Scale Unlabeled Data, Lihe Yang et al. (2024). It scales foundation models for monocular depth estimation to massive unlabeled datasets, building upon the structural lessons of high-resolution dense depth networks.
- Paper: Depth Pro: Sharp Monocular Metric Depth in Less Than a Second, Alexey Bochkovskiy et al. (2025). It extends monocular depth estimation to high-resolution metric depth synthesis at sub-second speeds using vision transformers.
- Paper: Frustum PointNets for 3D Object Detection from RGB-D Data, Charles R. Qi et al. (2018). It directly applies 2.5D depth predictions from single/multi-modal images to drive downstream 3D object detection in viewing frustums.
