Show / Hide Table of Contents

Class BoundingPolygon

A polygon used to describe the location of an object.

Inheritance
object
BoundingPolygon
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatalabelingservicedataplaneService.Models
Assembly: OCI.DotNetSDK.Datalabelingservicedataplane.dll
Syntax
public class BoundingPolygon

Properties

NormalizedVertices

Declaration
[Required(ErrorMessage = "NormalizedVertices is required.")]
[JsonProperty(PropertyName = "normalizedVertices")]
public List<NormalizedVertex> NormalizedVertices { get; set; }
Property Value
Type Description
List<NormalizedVertex>

The normalized vertices that make up the polygon. They are in the order of the segments they connect.

Remarks

Required

In this article
Back to top