StoredImagePrediction Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
StoredImagePrediction() |
Initializes a new instance of the StoredImagePrediction class. |
StoredImagePrediction(String, String, String, Guid, Guid, Guid, Guid, DateTime, IList<Prediction>) |
Initializes a new instance of the StoredImagePrediction class. |
StoredImagePrediction()
- Source:
- StoredImagePrediction.cs
- Source:
- StoredImagePrediction.cs
Initializes a new instance of the StoredImagePrediction class.
public StoredImagePrediction ();
Public Sub New ()
Applies to
StoredImagePrediction(String, String, String, Guid, Guid, Guid, Guid, DateTime, IList<Prediction>)
- Source:
- StoredImagePrediction.cs
- Source:
- StoredImagePrediction.cs
Initializes a new instance of the StoredImagePrediction class.
public StoredImagePrediction (string resizedImageUri = default, string thumbnailUri = default, string originalImageUri = default, Guid domain = default, Guid id = default, Guid project = default, Guid iteration = default, DateTime created = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Prediction> predictions = default);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.StoredImagePrediction : string * string * string * Guid * Guid * Guid * Guid * DateTime * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Prediction> -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.StoredImagePrediction
Public Sub New (Optional resizedImageUri As String = Nothing, Optional thumbnailUri As String = Nothing, Optional originalImageUri As String = Nothing, Optional domain As Guid = Nothing, Optional id As Guid = Nothing, Optional project As Guid = Nothing, Optional iteration As Guid = Nothing, Optional created As DateTime = Nothing, Optional predictions As IList(Of Prediction) = Nothing)
Parameters
- resizedImageUri
- String
The URI to the (resized) prediction image.
- thumbnailUri
- String
The URI to the thumbnail of the original prediction image.
- originalImageUri
- String
The URI to the original prediction image.
- domain
- Guid
Domain used for the prediction.
- id
- Guid
Prediction Id.
- project
- Guid
Project Id.
- iteration
- Guid
Iteration Id.
- created
- DateTime
Date this prediction was created.
- predictions
- IList<Prediction>
List of predictions.
Applies to
Azure SDK for .NET