< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_BoundingBox()-100%100%
get_Words()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\OcrLine.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    /// An object describing a single recognized line of text.
 20    /// </summary>
 21    public partial class OcrLine
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the OcrLine class.
 25        /// </summary>
 826        public OcrLine()
 27        {
 28            CustomInit();
 829        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the OcrLine class.
 33        /// </summary>
 34        /// <param name="boundingBox">Bounding box of a recognized line. The
 35        /// four integers represent the x-coordinate of the left edge, the
 36        /// y-coordinate of the top edge, width, and height of the bounding
 37        /// box, in the coordinate system of the input image, after it has been
 38        /// rotated around its center according to the detected text angle (see
 39        /// textAngle property), with the origin at the top-left corner, and
 40        /// the y-axis pointing down.</param>
 41        /// <param name="words">An array of objects, where each object
 42        /// represents a recognized word.</param>
 043        public OcrLine(string boundingBox = default(string), IList<OcrWord> words = default(IList<OcrWord>))
 44        {
 045            BoundingBox = boundingBox;
 046            Words = words;
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Gets or sets bounding box of a recognized line. The four integers
 57        /// represent the x-coordinate of the left edge, the y-coordinate of
 58        /// the top edge, width, and height of the bounding box, in the
 59        /// coordinate system of the input image, after it has been rotated
 60        /// around its center according to the detected text angle (see
 61        /// textAngle property), with the origin at the top-left corner, and
 62        /// the y-axis pointing down.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "boundingBox")]
 1065        public string BoundingBox { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets an array of objects, where each object represents a
 69        /// recognized word.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "words")]
 2872        public IList<OcrWord> Words { get; set; }
 73
 74    }
 75}