< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.StoredSuggestedTagAndRegion
Assembly:Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\StoredSuggestedTagAndRegion.cs
Covered lines:3
Uncovered lines:25
Coverable lines:28
Total lines:160
Line coverage:10.7% (3 of 28)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Width()-0%100%
get_Height()-0%100%
get_ResizedImageUri()-0%100%
get_ThumbnailUri()-0%100%
get_OriginalImageUri()-0%100%
get_Domain()-0%100%
get_Id()-0%100%
get_Project()-0%100%
get_Iteration()-0%100%
get_Created()-0%100%
get_Predictions()-100%100%
get_PredictionUncertainty()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.CustomVision.Training\src\Generated\Models\StoredSuggestedTagAndRegion.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Result of a suggested tags and regions request of the untagged image.
 20    /// </summary>
 21    public partial class StoredSuggestedTagAndRegion
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the StoredSuggestedTagAndRegion
 25        /// class.
 26        /// </summary>
 227        public StoredSuggestedTagAndRegion()
 28        {
 29            CustomInit();
 230        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the StoredSuggestedTagAndRegion
 34        /// class.
 35        /// </summary>
 36        /// <param name="width">Width of the resized image.</param>
 37        /// <param name="height">Height of the resized image.</param>
 38        /// <param name="resizedImageUri">The URI to the (resized) prediction
 39        /// image. If VNET feature is enabled this will be a relative path to
 40        /// be used with GetArtifact, otherwise this will be an absolute URI to
 41        /// the resource.</param>
 42        /// <param name="thumbnailUri">The URI to the thumbnail of the original
 43        /// prediction image. If VNET feature is enabled this will be a
 44        /// relative path to be used with GetArtifact, otherwise this will be
 45        /// an absolute URI to the resource.</param>
 46        /// <param name="originalImageUri">The URI to the original prediction
 47        /// image. If VNET feature is enabled this will be a relative path to
 48        /// be used with GetArtifact, otherwise this will be an absolute URI to
 49        /// the resource.</param>
 50        /// <param name="domain">Domain used for the prediction.</param>
 51        /// <param name="id">Prediction Id.</param>
 52        /// <param name="project">Project Id.</param>
 53        /// <param name="iteration">Iteration Id.</param>
 54        /// <param name="created">Date this prediction was created.</param>
 55        /// <param name="predictions">List of predictions.</param>
 56        /// <param name="predictionUncertainty">Uncertainty (entropy) of
 57        /// suggested tags or regions per image.</param>
 058        public StoredSuggestedTagAndRegion(int width = default(int), int height = default(int), string resizedImageUri =
 59        {
 060            Width = width;
 061            Height = height;
 062            ResizedImageUri = resizedImageUri;
 063            ThumbnailUri = thumbnailUri;
 064            OriginalImageUri = originalImageUri;
 065            Domain = domain;
 066            Id = id;
 067            Project = project;
 068            Iteration = iteration;
 069            Created = created;
 070            Predictions = predictions;
 071            PredictionUncertainty = predictionUncertainty;
 72            CustomInit();
 073        }
 74
 75        /// <summary>
 76        /// An initialization method that performs custom operations like setting defaults
 77        /// </summary>
 78        partial void CustomInit();
 79
 80        /// <summary>
 81        /// Gets width of the resized image.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "width")]
 084        public int Width { get; private set; }
 85
 86        /// <summary>
 87        /// Gets height of the resized image.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "height")]
 090        public int Height { get; private set; }
 91
 92        /// <summary>
 93        /// Gets the URI to the (resized) prediction image. If VNET feature is
 94        /// enabled this will be a relative path to be used with GetArtifact,
 95        /// otherwise this will be an absolute URI to the resource.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "resizedImageUri")]
 098        public string ResizedImageUri { get; private set; }
 99
 100        /// <summary>
 101        /// Gets the URI to the thumbnail of the original prediction image. If
 102        /// VNET feature is enabled this will be a relative path to be used
 103        /// with GetArtifact, otherwise this will be an absolute URI to the
 104        /// resource.
 105        /// </summary>
 106        [JsonProperty(PropertyName = "thumbnailUri")]
 0107        public string ThumbnailUri { get; private set; }
 108
 109        /// <summary>
 110        /// Gets the URI to the original prediction image. If VNET feature is
 111        /// enabled this will be a relative path to be used with GetArtifact,
 112        /// otherwise this will be an absolute URI to the resource.
 113        /// </summary>
 114        [JsonProperty(PropertyName = "originalImageUri")]
 0115        public string OriginalImageUri { get; private set; }
 116
 117        /// <summary>
 118        /// Gets domain used for the prediction.
 119        /// </summary>
 120        [JsonProperty(PropertyName = "domain")]
 0121        public System.Guid Domain { get; private set; }
 122
 123        /// <summary>
 124        /// Gets prediction Id.
 125        /// </summary>
 126        [JsonProperty(PropertyName = "id")]
 0127        public System.Guid Id { get; private set; }
 128
 129        /// <summary>
 130        /// Gets project Id.
 131        /// </summary>
 132        [JsonProperty(PropertyName = "project")]
 0133        public System.Guid Project { get; private set; }
 134
 135        /// <summary>
 136        /// Gets iteration Id.
 137        /// </summary>
 138        [JsonProperty(PropertyName = "iteration")]
 0139        public System.Guid Iteration { get; private set; }
 140
 141        /// <summary>
 142        /// Gets date this prediction was created.
 143        /// </summary>
 144        [JsonProperty(PropertyName = "created")]
 0145        public System.DateTime Created { get; private set; }
 146
 147        /// <summary>
 148        /// Gets list of predictions.
 149        /// </summary>
 150        [JsonProperty(PropertyName = "predictions")]
 4151        public IList<Prediction> Predictions { get; private set; }
 152
 153        /// <summary>
 154        /// Gets uncertainty (entropy) of suggested tags or regions per image.
 155        /// </summary>
 156        [JsonProperty(PropertyName = "predictionUncertainty")]
 0157        public double PredictionUncertainty { get; private set; }
 158
 159    }
 160}