File size: 1,553 Bytes
3c87327 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | ---
language:
- en
- zh
tags:
- coreml
- depth-estimation
- panoramic
- ane
- apple-neural-engine
- quantized
- int8
- ios
license: apache-2.0
pipeline_tag: depth-estimation
---
# DAP (Depth Anything Panoramic) - 256x512 INT8 CoreML Model
This repository contains the quantized CoreML model for **Depth Anything Panoramic (DAP)**, tailored and optimized for Apple Neural Engine (ANE) on iOS devices (e.g. iPhone 15 / iPhone 16 series).
## Model Overview
- **Architecture**: Depth Anything V2 Panoramic Backbone (DAP)
- **Input Resolution**: `256 x 512` (Equirectangular Panoramic Frame, RGB, 3 channels)
- **Quantization**: INT8 Linear Weight Quantization
- **Runtime Acceleration**: Apple Neural Engine (ANE) + MPSGraph
- **Package Format**: Apple CoreML `.mlpackage`
- **Compressed Archive**: `dap_256x512_int8.mlpackage.zip` (277 MB)
## Benchmark Performance on Hardware (iPhone 15)
| Metric | Measured Value |
| :--- | :--- |
| **Engine / Compute Unit** | Apple Neural Engine (`.all`) |
| **Average Inference Latency** | **82.5 ms** (~12.1 FPS) |
| **Cold Start / Load Latency** | ~650 ms |
| **Runtime Memory Peak** | **410 MB** |
| **Output Metric** | Relative / Metric Depth Map (`256 x 512`, FP32) |
## Quickstart (Download & Extract)
You can download and extract the model into your WalkMate project or custom iOS application using:
```bash
# Download
curl -L -o dap_256x512_int8.mlpackage.zip https://huggingface.co/Sysking/dap-quantized/resolve/main/dap_256x512_int8.mlpackage.zip
# Extract
unzip dap_256x512_int8.mlpackage.zip
```
|