< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.FaceRectangle
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\FaceRectangle.cs
Covered lines:4
Uncovered lines:8
Coverable lines:12
Total lines:83
Line coverage:33.3% (4 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Left()-0%100%
get_Top()-0%100%
get_Width()-100%100%
get_Height()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\FaceRectangle.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.Linq;
 15
 16    /// <summary>
 17    /// An object describing face rectangle.
 18    /// </summary>
 19    public partial class FaceRectangle
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the FaceRectangle class.
 23        /// </summary>
 424        public FaceRectangle()
 25        {
 26            CustomInit();
 427        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the FaceRectangle class.
 31        /// </summary>
 32        /// <param name="left">X-coordinate of the top left point of the face,
 33        /// in pixels.</param>
 34        /// <param name="top">Y-coordinate of the top left point of the face,
 35        /// in pixels.</param>
 36        /// <param name="width">Width measured from the top-left point of the
 37        /// face, in pixels.</param>
 38        /// <param name="height">Height measured from the top-left point of the
 39        /// face, in pixels.</param>
 040        public FaceRectangle(int left = default(int), int top = default(int), int width = default(int), int height = def
 41        {
 042            Left = left;
 043            Top = top;
 044            Width = width;
 045            Height = height;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets x-coordinate of the top left point of the face, in
 56        /// pixels.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "left")]
 059        public int Left { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets y-coordinate of the top left point of the face, in
 63        /// pixels.
 64        /// </summary>
 65        [JsonProperty(PropertyName = "top")]
 066        public int Top { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets width measured from the top-left point of the face, in
 70        /// pixels.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "width")]
 873        public int Width { get; set; }
 74
 75        /// <summary>
 76        /// Gets or sets height measured from the top-left point of the face,
 77        /// in pixels.
 78        /// </summary>
 79        [JsonProperty(PropertyName = "height")]
 880        public int Height { get; set; }
 81
 82    }
 83}