编辑 | blame | 历史 | 原始文档

---
title: Object Detection with Ellipses
type: templates
category: Computer Vision
cat: computer-vision
order: 115
meta_title: Object Detection with Ellipses Data Labeling Template

meta_description: Template for adding elliptical regions to images for object detection and segmentation use cases with Label Studio for your machine learning and data science projects.

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>

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.
xml <EllipseLabels name="tag" toName="img"> <Label value="Blood Cell" /> <Label value="Stem Cell" /> </EllipseLabels>

Use the Image object tag to specify the image data:
xml <Image name="img" value="$image" />

Related tags