Share via


BoundingBox Constructors

Definition

Overloads

BoundingBox()

Initializes a new instance of the BoundingBox class.

BoundingBox(Double, Double, Double, Double)

Initializes a new instance of the BoundingBox class.

BoundingBox()

Source:
BoundingBox.cs
Source:
BoundingBox.cs

Initializes a new instance of the BoundingBox class.

public BoundingBox ();
Public Sub New ()

Applies to

BoundingBox(Double, Double, Double, Double)

Source:
BoundingBox.cs
Source:
BoundingBox.cs

Initializes a new instance of the BoundingBox class.

public BoundingBox (double left, double top, double width, double height);
new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.BoundingBox : double * double * double * double -> Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.BoundingBox
Public Sub New (left As Double, top As Double, width As Double, height As Double)

Parameters

left
Double

Coordinate of the left boundary.

top
Double

Coordinate of the top boundary.

width
Double

Width.

height
Double

Height.

Applies to