NEW OpenAI Structured Outputs with Label Studio 🚀

Object Detection with Ellipses

If you want to perform object detection or semantic segmentation using ellipses, use this template.

Interactive Template Preview

Labeling Configuration

      <View>
  <EllipseLabels name="tag" toName="img">
    <Label value="Blood Cell" />
    <Label value="Stem Cell" />
  </EllipseLabels>
  <Image name="img" value="$image" />
</View>
    
Launch in Playground

About the labeling configuration

All labeling configurations must be wrapped in View tags.

Use the EllipseLabels control tag to add ellipses with specific labels to your image.

      <EllipseLabels name="tag" toName="img">
    <Label value="Blood Cell" />
    <Label value="Stem Cell" />
</EllipseLabels>

Use the Image object tag to specify the image data:

      <Image name="img" value="$image" />