Depth estimation predicts how far objects are in an image. We want to know how close the predicted depths are to the true depths.
Common metrics include:
- Mean Absolute Error (MAE): Average of absolute differences between predicted and true depths. Lower is better.
- Root Mean Squared Error (RMSE): Square root of average squared differences. Penalizes big mistakes more.
- Threshold Accuracy: Percentage of pixels where prediction is within a certain ratio of true depth (e.g., within 1.25 times). Higher is better.
These metrics tell us how accurate and reliable the depth predictions are.