ImageRegion Constructors

Definition

Overloads

ImageRegion()

Initializes a new instance of the ImageRegion class.

ImageRegion(Guid, Double, Double, Double, Double, Guid, String, DateTime)

Initializes a new instance of the ImageRegion class.

ImageRegion()

Source:
ImageRegion.cs
Source:
ImageRegion.cs

Initializes a new instance of the ImageRegion class.

public ImageRegion ();
Public Sub New ()

Applies to

ImageRegion(Guid, Double, Double, Double, Double, Guid, String, DateTime)

Source:
ImageRegion.cs
Source:
ImageRegion.cs

Initializes a new instance of the ImageRegion class.

public ImageRegion (Guid tagId, double left, double top, double width, double height, Guid regionId = default, string tagName = default, DateTime created = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageRegion : Guid * double * double * double * double * Guid * string * DateTime -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageRegion
Public Sub New (tagId As Guid, left As Double, top As Double, width As Double, height As Double, Optional regionId As Guid = Nothing, Optional tagName As String = Nothing, Optional created As DateTime = Nothing)

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.

regionId
Guid
tagName
String
created
DateTime

Applies to