
fater-ai/spatial-tracker-2
Public
12
runs
Run fater-ai/spatial-tracker-2 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
video |
string
|
Input video file to process.
|
|
fps |
integer
|
4
|
Frames per second to sample.
|
track_mode |
None
|
offline
|
Tracking mode.
|
grid_size |
integer
|
15
|
Grid size for query points.
|
vo_points |
integer
|
756
|
Number of points for pose estimation.
|
confidence_threshold |
number
|
0.5
|
Confidence threshold to filter depths.
|
zip_mode |
None
|
full
|
Choose what to include in the output zip file.
|
resize_factor |
number
|
0
|
Factor to resize the output resolution (e.g., 0.5 for half-size). If not provided, uses the original default.
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"fps": {
"type": "integer",
"title": "Fps",
"default": 4,
"x-order": 1,
"description": "Frames per second to sample."
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "Input video file to process."
},
"zip_mode": {
"enum": [
"full",
"ply_only"
],
"type": "string",
"title": "zip_mode",
"description": "Choose what to include in the output zip file.",
"default": "full",
"x-order": 6
},
"grid_size": {
"type": "integer",
"title": "Grid Size",
"default": 15,
"x-order": 3,
"description": "Grid size for query points."
},
"vo_points": {
"type": "integer",
"title": "Vo Points",
"default": 756,
"x-order": 4,
"description": "Number of points for pose estimation."
},
"track_mode": {
"enum": [
"offline",
"online"
],
"type": "string",
"title": "track_mode",
"description": "Tracking mode.",
"default": "offline",
"x-order": 2
},
"resize_factor": {
"type": "number",
"title": "Resize Factor",
"default": 0,
"x-order": 7,
"description": "Factor to resize the output resolution (e.g., 0.5 for half-size). If not provided, uses the original default."
},
"confidence_threshold": {
"type": "number",
"title": "Confidence Threshold",
"default": 0.5,
"x-order": 5,
"description": "Confidence threshold to filter depths."
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}