Mixpeek Logo
    Schedule Demo
    Video

    Person Tracking

    Track and analyze people in video

    Note: This playground provides simulated output to showcase functionality. No input data is processed or stored on our servers. Use this demo to explore the feature extractor's capabilities before integrating it into your application.

    Input

    Enter a URL to a video file

    Drag and drop a video file here, or click to browse

    The person tracking model to use. Default: person-tracker-v2

    Minimum confidence threshold for person detection. Default: 0.6

    Whether to include person attributes. Default: true

    Maximum number of persons to track. Default: 10

    Output

    {
    "persons": [
    {
    "id": 1,
    "bbox": [
    100,
    100,
    200,
    200
    ],
    "attributes": {
    "gender": "male",
    "age": 30
    }
    },
    {
    "id": 2,
    "bbox": [
    300,
    100,
    400,
    200
    ],
    "attributes": {
    "gender": "female",
    "age": 25
    }
    }
    ]
    }