Skip to main content
POST
/
models
/
v2
/
vinvino02
/
glpn-nyu
depth-estimation
curl --request POST \
  --url https://api.bytez.com/models/v2/vinvino02/glpn-nyu \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://as1.ftcdn.net/v2/jpg/03/03/55/82/1000_F_303558268_YNUQp9NNMTE0X4zrj314mbWcDHd1pZPD.jpg",
  "base64": "data:image/jpg;base64,...BASE_64_GOES_HERE (Only use this is you are not using a url)"
}
'
{
  "error": "<string>",
  "output": {
    "depth_png": "iVBORw0KGgoAAAANSUhE...",
    "formatted_predicted_depth_array": [
      [
        0,
        1,
        2
      ],
      [
        0,
        1,
        2
      ],
      [
        0,
        1,
        2
      ]
    ]
  }
}

Authorizations

Authorization
string
header
required

Set Authorization header to BYTEZ_KEY 'Authorization: YOUR_BYTEZ_KEY_HERE'

Body

application/json

Schema for depth-estimation models

url
string
required
Example:

"https://as1.ftcdn.net/v2/jpg/03/03/55/82/1000_F_303558268_YNUQp9NNMTE0X4zrj314mbWcDHd1pZPD.jpg"

base64
string
Example:

"data:image/jpg;base64,...BASE_64_GOES_HERE (Only use this is you are not using a url)"

Response

Successful depth-estimation response.

error
string | null
required

Null on success; otherwise an error message.

output
object
required

Successful response with depth estimation results

Example:
{
"depth_png": "iVBORw0KGgoAAAANSUhE...",
"formatted_predicted_depth_array": [[0, 1, 2], [0, 1, 2], [0, 1, 2]]
}