File size: 462 Bytes
87608ea
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Public benchmark-evaluation API for PXDepth.

The exported loader produces geometry-aware evaluation samples and the metric
function aligns raw predictions before computing depth, point-cloud, camera,
local-structure, and optional boundary measurements. Command-line orchestration
is kept in ``scripts/eval.py``.
"""

from .dataloader import EvalDataLoaderPipeline
from .metrics import compute_metrics

__all__ = ["EvalDataLoaderPipeline", "compute_metrics"]