Condividi tramite


Region Constructors

Definition

Overloads

Region()

Initializes a new instance of the Region class.

Region(Guid, Double, Double, Double, Double)

Initializes a new instance of the Region class.

Region()

Source:
Region.cs
Source:
Region.cs

Initializes a new instance of the Region class.

public Region ();
Public Sub New ()

Applies to

Region(Guid, Double, Double, Double, Double)

Source:
Region.cs
Source:
Region.cs

Initializes a new instance of the Region class.

public Region (Guid tagId, double left, double top, double width, double height);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Region : Guid * double * double * double * double -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Region
Public Sub New (tagId As Guid, left As Double, top As Double, width As Double, height As Double)

Parameters

tagId
Guid

Id of the tag associated with this region.

left
Double

Coordinate of the left boundary.

top
Double

Coordinate of the top boundary.

width
Double

Width.

height
Double

Height.

Applies to