Aracılığıyla paylaş


ImagePerformance Constructors

Definition

Overloads

ImagePerformance()

Initializes a new instance of the ImagePerformance class.

ImagePerformance(IList<Prediction>, Guid, DateTime, Int32, Int32, String, String, IList<ImageTag>, IList<ImageRegion>)

Initializes a new instance of the ImagePerformance class.

ImagePerformance()

Source:
ImagePerformance.cs
Source:
ImagePerformance.cs

Initializes a new instance of the ImagePerformance class.

public ImagePerformance ();
Public Sub New ()

Applies to

ImagePerformance(IList<Prediction>, Guid, DateTime, Int32, Int32, String, String, IList<ImageTag>, IList<ImageRegion>)

Source:
ImagePerformance.cs
Source:
ImagePerformance.cs

Initializes a new instance of the ImagePerformance class.

public ImagePerformance (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Prediction> predictions = default, Guid id = default, DateTime created = default, int width = 0, int height = 0, string imageUri = default, string thumbnailUri = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageTag> tags = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageRegion> regions = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Prediction> * Guid * DateTime * int * int * string * string * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageTag> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImageRegion> -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance
Public Sub New (Optional predictions As IList(Of Prediction) = Nothing, Optional id As Guid = Nothing, Optional created As DateTime = Nothing, Optional width As Integer = 0, Optional height As Integer = 0, Optional imageUri As String = Nothing, Optional thumbnailUri As String = Nothing, Optional tags As IList(Of ImageTag) = Nothing, Optional regions As IList(Of ImageRegion) = Nothing)

Parameters

predictions
IList<Prediction>
id
Guid
created
DateTime
width
Int32
height
Int32
imageUri
String
thumbnailUri
String
tags
IList<ImageTag>
regions
IList<ImageRegion>

Applies to