All models
Imagev1.0.0
Depth Anything 3 Mono
Best-quality single-image depth → depth map (near = bright) plus a sky mask.
5 inputsIMAGEIMAGEIMAGE


Best-quality single-image depth + sky mask
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins depth-anything-3-mono and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("depth-anything-3-mono", {
image: { ref: "https://..." },
inputSize: { value: 504 },
bitDepth: { value: "16" },
invert: { value: false },
colormap: { value: "spectral" },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node depth-anything-3-mono \
-i image=@https://... \
-i inputSize=504 \
-i bitDepth="16" \
-i invert=false \
-i colormap="spectral"{
"name": "runs_node",
"arguments": {
"node": "depth-anything-3-mono",
"inputs": {
"image": {
"ref": "https://..."
},
"inputSize": {
"value": 504
},
"bitDepth": {
"value": "16"
},
"invert": {
"value": false
},
"colormap": {
"value": "spectral"
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"depth-anything-3-mono","inputs":{"image":{"ref":"https://..."},"inputSize":{"value":504},"bitDepth":{"value":"16"},"invert":{"value":false},"colormap":{"value":"spectral"}}}'Schema
Inputs
| image* | IMAGE | ||
| inputSize | INT | Inference resolution | 504 |
| bitDepth | TEXT | 16 · 8 | 16 |
| invert | BOOLEAN | Invert (near = dark) | false |
| colormap | TEXT | Preview colors spectral · inferno · viridis · magma · turbo | spectral |
Outputs
| depth | IMAGE | ||
| colorDepth | IMAGE | ||
| skyMask | IMAGE |