Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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