Delen via


ImageRegionCreateEntry Constructors

Definition

Overloads

ImageRegionCreateEntry()

Initializes a new instance of the ImageRegionCreateEntry class.

ImageRegionCreateEntry(Guid, Guid, Double, Double, Double, Double)

Initializes a new instance of the ImageRegionCreateEntry class.

ImageRegionCreateEntry()

Source:
ImageRegionCreateEntry.cs
Source:
ImageRegionCreateEntry.cs

Initializes a new instance of the ImageRegionCreateEntry class.

public ImageRegionCreateEntry ();
Public Sub New ()

Applies to

ImageRegionCreateEntry(Guid, Guid, Double, Double, Double, Double)

Source:
ImageRegionCreateEntry.cs
Source:
ImageRegionCreateEntry.cs

Initializes a new instance of the ImageRegionCreateEntry class.

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

Parameters

imageId
Guid

Id of the image.

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