
Monocular depth estimator over each Image that auto-selects a HuggingFace pipeline, eager transformers, or ONNX backend from the checkpoint and emits a deploy-time-resolved depth Image, a metric MetricDepthMap, or an unscaled relative depth map.
A live image stream is turned into a normalised greyscale depth view and streamed to the browser for inspection or overlay.
Metric depth from a metric checkpoint feeds geometric reasoning that projects image points onto a ground plane.
model: any `.onnx` artefact routes through ONNX runtime, otherwise use_pipeline toggles between the transformers pipeline and the eager transformers network. Adding an `.onnx` file to the repo silently flips the inference path.MetricDepthMap (metres, near small, far large) while a relative or inverse-depth checkpoint (the default) emits an unscaled ordinal map. The component does not convert relative depth to metric.model and use_pipeline are hot-swappable at runtime; either change reloads the network in place and reclaims previous GPU memory while processing continues.device, which is workable for development but slow for production.Image is min-max normalised per frame, so its absolute brightness is not comparable across frames; use a depth-map arm for cross-frame measurements.device is captured once at startup; switching between CPU and GPU requires a redeploy.Automated release