Skip to content

Workflows with Depth Estimation

Below you can find example workflows you can use as inspiration to build your apps.

Depth Estimation

THIS EXAMPLE CAN ONLY BE RUN LOCALLY OR USING DEDICATED DEPLOYMENT

Use Depth Estimation to estimate the depth of an image.

Workflow definition
{
    "version": "1.0",
    "inputs": [
        {
            "type": "InferenceImage",
            "name": "image"
        }
    ],
    "steps": [
        {
            "type": "roboflow_core/depth_estimation@v1",
            "name": "depth_estimation",
            "images": "$inputs.image"
        }
    ],
    "outputs": [
        {
            "type": "JsonField",
            "name": "model_predictions",
            "coordinates_system": "own",
            "selector": "$steps.depth_estimation.*"
        }
    ]
}