BoundingBox Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET