# Vector Segmentation Template
This template demonstrates how to use the Vector tag for vector-based image
segmentation tasks.
## Labeling Configuration
```html
```
## About the labeling configuration
All labeling configurations must be wrapped in [View](/tags/view.html) tags.
You can add a [header](/tags/header.html) to provide instructions to the
annotator:
```xml
```
Use the [Image](/tags/image.html) object tag to specify the image data and allow
annotators to zoom the image:
```xml
```
Use the [VectorLabels](/tags/vectorlabels.html) control tag to allow annotators
to create vectors for specific labels.
```xml
```
Annotators can control the opacity of the vectors using the `opacity` argument,
and the styling of the vector tool using the `pointSize` and `strokeWidth`
arguments. Use the `background` argument with the [Label](/tags/label.html)
control tag to control the color of each vector.
The `closable="true"` parameter allows vectors to be closed into polygons, while
`curves="true"` enables Bezier curve creation for smooth vector paths.
## Related tags
- [Header](/tags/header.html)
- [Image](/tags/image.html)
- [VectorLabels](/tags/vectorlabels.html)
- [Label](/tags/label.html)