ObjectDetailLocation

public struct ObjectDetailLocation : Codable, Equatable

Defines the location of the bounding box around the object.

  • top

    Y-position of top-left pixel of the bounding box.

    Declaration

    Swift

    public var top: Int
  • X-position of top-left pixel of the bounding box.

    Declaration

    Swift

    public var left: Int
  • Width in pixels of of the bounding box.

    Declaration

    Swift

    public var width: Int
  • Height in pixels of the bounding box.

    Declaration

    Swift

    public var height: Int