|
PointsCloudGetBoundingRectangle Method
|
Get bounding rectangle of the specified list of points.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static void GetBoundingRectangle(
IEnumerable<IntPoint> cloud,
out IntPoint minXY,
out IntPoint maxXY
)
Public Shared Sub GetBoundingRectangle (
cloud As IEnumerable(Of IntPoint),
<OutAttribute> ByRef minXY As IntPoint,
<OutAttribute> ByRef maxXY As IntPoint
)
Request Example
View SourceParameters
- cloud
- Type: System.Collections.GenericIEnumerableIntPoint
Collection of points to get bounding rectangle for. - minXY
- Type: AccordIntPoint
Point comprised of smallest X and Y coordinates. - maxXY
- Type: AccordIntPoint
Point comprised of biggest X and Y coordinates.
See Also