public sealed class BoundingBox : IMessage<BoundingBox>, IEquatable<BoundingBox>, IDeepCloneable<BoundingBox>, IBufferMessage, IMessage
Bounding box encompassing detected text within an image.
Implements
IMessage<BoundingBox>, IEquatable<BoundingBox>, IDeepCloneable<BoundingBox>, IBufferMessage, IMessageNamespace
Google.Cloud.Dlp.V2Assembly
Google.Cloud.Dlp.V2.dll
Constructors
BoundingBox()
public BoundingBox()
BoundingBox(BoundingBox)
public BoundingBox(BoundingBox other)
Parameter | |
---|---|
Name | Description |
other | BoundingBox |
Properties
Height
public int Height { get; set; }
Height of the bounding box in pixels.
Property Value | |
---|---|
Type | Description |
Int32 |
Left
public int Left { get; set; }
Left coordinate of the bounding box. (0,0) is upper left.
Property Value | |
---|---|
Type | Description |
Int32 |
Top
public int Top { get; set; }
Top coordinate of the bounding box. (0,0) is upper left.
Property Value | |
---|---|
Type | Description |
Int32 |
Width
public int Width { get; set; }
Width of the bounding box in pixels.
Property Value | |
---|---|
Type | Description |
Int32 |