Search Results for

    Show / Hide Table of Contents

    Class BoundingBox

    Represents a rectangular region in an image, typically used for object detection results. X and Y specify the top-left corner, W and H specify the width and height.

    Inheritance
    object
    BoundingBox
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Glitch9.AIDevKit.Microsoft.Azure.ComputerVision
    Assembly: Glitch9.AIDevKit.Provider.Microsoft.Azure.dll
    Syntax
    public sealed class BoundingBox

    Properties

    | Edit this page View Source

    H

    Height of the bounding box.

    Declaration
    [JsonProperty("h")]
    public int H { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    W

    Width of the bounding box.

    Declaration
    [JsonProperty("w")]
    public int W { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    X

    Top-left X coordinate of the bounding box.

    Declaration
    [JsonProperty("x")]
    public int X { get; set; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Y

    Top-left Y coordinate of the bounding box.

    Declaration
    [JsonProperty("y")]
    public int Y { get; set; }
    Property Value
    Type Description
    int

    Extension Methods

    ArrayExtensions.ToArrayOrEmpty<T>(T)
    ArrayExtensions.ToArrayOrNull<T>(T)
    EventExtensions.ToDelta<T>(T, string, int, string, bool)
    EventExtensions.ToDone<T>(T, string, int, string)
    EventExtensions.ToEvent<T>(T)
    EventExtensions.UpcastDelta<T1, T2>(T1, string, int, string, bool)
    FallbackExtensions.IsOr<TParent, TChild>(TParent, TChild)
    ResponseCastingExtensions.GetResult<T>(T)
    SystemExtensions.GetName(object)
    • Edit this page
    • View Source
    In this article
    Back to top AI DevKit Documentation