Class BoundingBox (3.5.0)

public sealed class BoundingBox : IMessage<BoundingBox>, IEquatable<BoundingBox>, IDeepCloneable<BoundingBox>, IBufferMessage, IMessage

Bounding box encompassing detected text within an image.

Inheritance

Object > BoundingBox

Namespace

Google.Cloud.Dlp.V2

Assembly

Google.Cloud.Dlp.V2.dll

Constructors

BoundingBox()

public BoundingBox()

BoundingBox(BoundingBox)

public BoundingBox(BoundingBox other)
Parameter
NameDescription
otherBoundingBox

Properties

Height

public int Height { get; set; }

Height of the bounding box in pixels.

Property Value
TypeDescription
Int32

Left

public int Left { get; set; }

Left coordinate of the bounding box. (0,0) is upper left.

Property Value
TypeDescription
Int32

Top

public int Top { get; set; }

Top coordinate of the bounding box. (0,0) is upper left.

Property Value
TypeDescription
Int32

Width

public int Width { get; set; }

Width of the bounding box in pixels.

Property Value
TypeDescription
Int32