Downloads · 30 days
0
ashwmurt/depth_pro
depth_pro is a depth estimation model from ashwmurt. Use it for the depth estimation task on the model card, and read the license before you ship it in a product. It is set up for pytorch. The card lists the license as other.
Apple DepthPro is a zero-shot monocular metric depth estimator that emits high-resolution, sharp depth maps from a single 1536x1536 RGB image. The architecture is a multi-scale Vision Transformer built on Dinov2 encod…
Downloads · 30 days
0
Access
Public
Updated Aug 29, 2026
Repo size
—
Likes
0
Public
Click a slice to open those files.
.py13.7 KB · 68%
From the Hugging Face model README
Apple DepthPro is a zero-shot monocular metric depth estimator that emits high-resolution, sharp depth maps from a single 1536x1536 RGB image. The architecture is a multi-scale Vision Transformer built on Dinov2 encoders with DPT-style fusion; alongside the depth map the model predicts a per-image horizontal field of view, which downstream calibration converts into a focal length in pixels. This recipe wraps Apple's HuggingFace checkpoint (apple/DepthPro-hf, ~952M parameters) at the model's native 1536x1536 input resolution.
This is based on the implementation of DepthPro found here. This is a standalone recipe compatible with the Qualcomm® AI Hub Models CLI — it can be compiled and evaluated on real Snapdragon devices via Qualcomm® AI Hub Workbench.
Qualcomm AI Hub Models uses Qualcomm AI Hub Workbench to compile, profile, and evaluate this model. Sign up to run these models on a hosted Qualcomm® device.
Install the base package, fetch this recipe from Hugging Face, then use the
qai-hub-models CLI to install the recipe's dependencies:
# NOTE: 3.10 <= PYTHON_VERSION < 3.14 is supported.
pip install qai-hub-models
qai-hub-models register ashwmurt/depth_pro
qai-hub-models install depth_pro
register downloads the recipe and names it depth_pro, which is how every
command below refers to it.
Sign-in to Qualcomm® AI Hub Workbench with your
Qualcomm® ID. Once signed in navigate to Account -> Settings -> API Token.
With this API token, you can configure your client to run models on the cloud hosted devices.
qai-hub configure --api_token API_TOKEN
Navigate to docs for more information.
Run the following simple CLI demo to verify the model is working end to end:
qai-hub-models demo depth_pro
More details on the CLI tool can be found with the --help option. See
demo.py for sample usage of the model including pre/post processing
scripts.
By default, the demo will run locally in PyTorch. Pass --eval-mode on-device to run the model on a cloud-hosted target device.
To run the model on Qualcomm® devices, you must export the model for use with an edge runtime such as TensorFlow Lite, ONNX Runtime, or Qualcomm AI Engine Direct. Use the following command to export the model:
qai-hub-models export depth_pro
Additional options are documented with the --help option.