Mixpeek Logo
    Schedule Demo
    Image

    Image Segmentation

    Partition images into multiple segments for detailed analysis

    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 image file

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

    The segmentation model to use. Default: deeplabv3_resnet101

    Minimum segment area percentage. Default: 0.1

    Whether to include segmentation masks. Default: true

    Specific classes to segment. Default: all

    Output

    {
    "segments": [
    {
    "class": "sky",
    "color": [
    140,
    200,
    255
    ],
    "area_percentage": 32.5,
    "mask": "base64..."
    },
    {
    "class": "grass",
    "color": [
    50,
    180,
    50
    ],
    "area_percentage": 40.2,
    "mask": "base64..."
    },
    {
    "class": "person",
    "color": [
    255,
    190,
    150
    ],
    "area_percentage": 12.8,
    "mask": "base64..."
    }
    ],
    "segment_count": 3,
    "model": "deeplabv3_resnet101"
    }