< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.ComputerVision.Models.OcrRegion
Assembly:Microsoft.Azure.CognitiveServices.Vision.ComputerVision
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\OcrRegion.cs
Covered lines:4
Uncovered lines:4
Coverable lines:8
Total lines:74
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_Lines()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ComputerVision\src\Generated\Models\OcrRegion.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    /// A region consists of multiple lines (e.g. a column of text in a
 20    /// multi-column document).
 21    /// </summary>
 22    public partial class OcrRegion
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the OcrRegion class.
 26        /// </summary>
 427        public OcrRegion()
 28        {
 29            CustomInit();
 430        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the OcrRegion class.
 34        /// </summary>
 35        /// <param name="boundingBox">Bounding box of a recognized region. The
 36        /// four integers represent the x-coordinate of the left edge, the
 37        /// y-coordinate of the top edge, width, and height of the bounding
 38        /// box, in the coordinate system of the input image, after it has been
 39        /// rotated around its center according to the detected text angle (see
 40        /// textAngle property), with the origin at the top-left corner, and
 41        /// the y-axis pointing down.</param>
 42        /// <param name="lines">An array of recognized lines of text.</param>
 043        public OcrRegion(string boundingBox = default(string), IList<OcrLine> lines = default(IList<OcrLine>))
 44        {
 045            BoundingBox = boundingBox;
 046            Lines = lines;
 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 region. 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")]
 665        public string BoundingBox { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets an array of recognized lines of text.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "lines")]
 2671        public IList<OcrLine> Lines { get; set; }
 72
 73    }
 74}