Mixpeek Logo
    Schedule Demo
    Video

    Person Detection & Analysis

    Detect and analyze people in video streams

    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 detection model to use. Default: person-detector-v2

    Minimum confidence threshold for person detection. Default: 0.6

    Whether to include person attributes. Default: true

    Maximum number of persons to detect. Default: 10

    Output

    {
    "persons": [
    {
    "person_id": "p001",
    "appearance_time": [
    {
    "start": 0.5,
    "end": 15.8
    },
    {
    "start": 42.3,
    "end": 68.9
    }
    ],
    "attributes": {
    "clothing_colors": [
    "blue",
    "black"
    ],
    "accessories": [
    "glasses"
    ],
    "estimated_age": "30-40"
    },
    "screen_time_percentage": 42.5
    }
    ],
    "total_persons": 1,
    "crowd_scenes": [
    {
    "start": 120.5,
    "end": 135.8,
    "estimated_count": 15
    }
    ]
    }