Show / Hide Table of Contents

Class BoundingPolygon

The object-bounding polygon box.

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.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.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>

An array of normalized points defining the polygon's perimeter, with an implicit segment between subsequent points and between the first and last point. Rectangles are defined with four points. For example, [{\"x\": 0, \"y\": 0}, {\"x\": 1, \"y\": 0}, {\"x\": 1, \"y\": 0.5}, {\"x\": 0, \"y\": 0.5}] represents the top half of an image.

Remarks

Required

In this article
Back to top