< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.ImageAnalysis
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageAnalysis.cs
Covered lines:9
Uncovered lines:17
Coverable lines:26
Total lines:144
Line coverage:34.6% (9 of 26)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Categories()-100%100%
get_Adult()-100%100%
get_Color()-100%100%
get_ImageType()-100%100%
get_Tags()-100%100%
get_Description()-0%100%
get_Faces()-100%100%
get_Objects()-0%100%
get_Brands()-0%100%
get_RequestId()-0%100%
get_Metadata()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\ImageAnalysis.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.ComputerVision.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 AnalyzeImage operation.
 20    /// </summary>
 21    public partial class ImageAnalysis
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ImageAnalysis class.
 25        /// </summary>
 426        public ImageAnalysis()
 27        {
 28            CustomInit();
 429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ImageAnalysis class.
 33        /// </summary>
 34        /// <param name="categories">An array indicating identified
 35        /// categories.</param>
 36        /// <param name="adult">An object describing whether the image contains
 37        /// adult-oriented content and/or is racy.</param>
 38        /// <param name="color">An object providing additional metadata
 39        /// describing color attributes.</param>
 40        /// <param name="imageType">An object providing possible image types
 41        /// and matching confidence levels.</param>
 42        /// <param name="tags">A list of tags with confidence level.</param>
 43        /// <param name="description">A collection of content tags, along with
 44        /// a list of captions sorted by confidence level, and image
 45        /// metadata.</param>
 46        /// <param name="faces">An array of possible faces within the
 47        /// image.</param>
 48        /// <param name="objects">Array of objects describing what was detected
 49        /// in the image.</param>
 50        /// <param name="brands">Array of brands detected in the image.</param>
 51        /// <param name="requestId">Id of the REST API request.</param>
 052        public ImageAnalysis(IList<Category> categories = default(IList<Category>), AdultInfo adult = default(AdultInfo)
 53        {
 054            Categories = categories;
 055            Adult = adult;
 056            Color = color;
 057            ImageType = imageType;
 058            Tags = tags;
 059            Description = description;
 060            Faces = faces;
 061            Objects = objects;
 062            Brands = brands;
 063            RequestId = requestId;
 064            Metadata = metadata;
 65            CustomInit();
 066        }
 67
 68        /// <summary>
 69        /// An initialization method that performs custom operations like setting defaults
 70        /// </summary>
 71        partial void CustomInit();
 72
 73        /// <summary>
 74        /// Gets or sets an array indicating identified categories.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "categories")]
 1677        public IList<Category> Categories { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets an object describing whether the image contains
 81        /// adult-oriented content and/or is racy.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "adult")]
 3284        public AdultInfo Adult { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets an object providing additional metadata describing
 88        /// color attributes.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "color")]
 1691        public ColorInfo Color { get; set; }
 92
 93        /// <summary>
 94        /// Gets or sets an object providing possible image types and matching
 95        /// confidence levels.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "imageType")]
 898        public ImageType ImageType { get; set; }
 99
 100        /// <summary>
 101        /// Gets or sets a list of tags with confidence level.
 102        /// </summary>
 103        [JsonProperty(PropertyName = "tags")]
 16104        public IList<ImageTag> Tags { get; set; }
 105
 106        /// <summary>
 107        /// Gets or sets a collection of content tags, along with a list of
 108        /// captions sorted by confidence level, and image metadata.
 109        /// </summary>
 110        [JsonProperty(PropertyName = "description")]
 0111        public ImageDescriptionDetails Description { get; set; }
 112
 113        /// <summary>
 114        /// Gets or sets an array of possible faces within the image.
 115        /// </summary>
 116        [JsonProperty(PropertyName = "faces")]
 8117        public IList<FaceDescription> Faces { get; set; }
 118
 119        /// <summary>
 120        /// Gets or sets array of objects describing what was detected in the
 121        /// image.
 122        /// </summary>
 123        [JsonProperty(PropertyName = "objects")]
 0124        public IList<DetectedObject> Objects { get; set; }
 125
 126        /// <summary>
 127        /// Gets or sets array of brands detected in the image.
 128        /// </summary>
 129        [JsonProperty(PropertyName = "brands")]
 0130        public IList<DetectedBrand> Brands { get; set; }
 131
 132        /// <summary>
 133        /// Gets or sets id of the REST API request.
 134        /// </summary>
 135        [JsonProperty(PropertyName = "requestId")]
 0136        public string RequestId { get; set; }
 137
 138        /// <summary>
 139        /// </summary>
 140        [JsonProperty(PropertyName = "metadata")]
 12141        public ImageMetadata Metadata { get; set; }
 142
 143    }
 144}