templates
- Introduction
- Image Classification
- Image Object Detection
- Image Key Points
- Image Segmentation
- Image Ellipse
- Image Polygons
- Text Named Entity Recognition
- Text Sentiment Analysis
- Dialogue Analysis
- HTML Documents NER
- Audio Transcription
- Audio Classification
- Audio Regions
- Video Classifier
- Pairwise Comparison
Image Polygons
Image polygons labeling

Run
label-studio init --template=image_polygons image_polygons_project
label-studio start image_polygons_project
Config
<View style="display: flex">
<View style="width: 100px">
<Header value="Pick label" />
<PolygonLabels name="tag" toName="img" strokewidth="2" pointstyle="circle" pointsize="small" showInline="false">
<Label value="Car" background="blue" />
<Label value="Sign" background="blue" />
<Label value="Person" background="blue" />
<Label value="Tree" background="green" />
</PolygonLabels>
</View>
<View>
<Image name="img" value="$image" showMousePos="true" zoom="true" />
</View>
</View>