Bin
2025-12-17 dcf780a91c16b6be28635b6e2e0e702060ee19f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
title: Semantic Segmentation with Polygons
type: community
group: Computer Vision
order: 1
image: /static/templates/semantic-segmentation-with-polygons.png
details: |
  <h1>Draw a polygon around object</h1>
  <dl>
    <dt>Industry Applications</dt>
    <dd>autonomous driving, medical image analysis, satellite imagery analysis, geospatial mapping, urban planning, precision agriculture, environmental monitoring, industrial inspection, pathology, radiology, aerial surveying, land cover classification</dd>
    <dt>Associated Models</dt>
    <dd>DeepLab, PSPNet, U-Net, SegNet, Mask R-CNN, FCN</dd>
    <dt>Domain Terminology</dt>
    <dd>polygon annotation, boundary detection, precise segmentation, vector annotation, contour detection</dd>
  </dl>
config: |
  <View>
 
    <Header value="Select label and click the image to start"/>
    <Image name="image" value="$image" zoom="true"/>
 
    <PolygonLabels name="label" toName="image"
                   strokeWidth="3" pointSize="small"
                   opacity="0.9">
      <Label value="Airplane" background="red"/>
      <Label value="Car" background="blue"/>
    </PolygonLabels>
 
  </View>