All models
Imagev1.0.0
Depth Anything v2 (Depth Map)
Read a depth map off any image, ready for depth-guided generation.
2 inputsIMAGEIMAGE


Depth map, ready for depth-guided generation
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-v2 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-v2", {
image: { ref: "https://..." },
modelSize: { value: "Large" },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node depth-anything-v2 \
-i image=@https://... \
-i modelSize="Large"{
"name": "runs_node",
"arguments": {
"node": "depth-anything-v2",
"inputs": {
"image": {
"ref": "https://..."
},
"modelSize": {
"value": "Large"
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"depth-anything-v2","inputs":{"image":{"ref":"https://..."},"modelSize":{"value":"Large"}}}'Schema
Inputs
| image* | IMAGE | ||
| modelSize | TEXT | Small · Base · Large | Large |
Outputs
| depth | IMAGE | ||
| colorDepth | IMAGE |