Table of Contents
- See Also
- opals::IBounds
Aim of module
Derives and stores the 2D boundary polygon of a region covered by the point data of an ODM or the valid pixels of a raster.
General description
Even though the (vague) outline or shape of a point set may seem visually intuitive and clear, it may be defined and computed in various ways. The respective approaches may be classified into methods directly acting on the vector data and others that use rasterized versions of the data (thus depending on respective cell sizes). Module Bounds provides several methods that operate on vector data and derive a 2-dimensional outline of the point set provided by an ODM or a grid/raster. This outline is represented as 1 strictly simple (i.e. non-self-intersecting) polygon that may be convex or concave, depending on the method.
Alpha-shapes
-shapes come close to what one would expect as a tight outline.
-shapes are based on the triangulation of a point set. In regularized
-shapes, as applied in Module Bounds, whole triangles together with their incident edges and vertices either belong to the shape or not, depending on the triangles' circumcircle radii, which must be smaller than the so-called
-radius then. Therefore, the smaller the
-radius, the fewer triangles form part of the
-shape, and into the more connected components the
-shape will be split. With increasing
-radius, the
-shape converges to the convex hull, constituting a single connected component only.
If the
-radius is not specified, then Module Bounds uses the minimum
-radius that makes all data points form part of the
-shape and which yields a single connected component of
-shape-triangles.
As the triangulation of large point sets is memory- and time-consuming, Module Bounds determines the coarse outline of data beforehand, and hence only triangulates the data within the outer regions. However, if point density varies largely within these regions, this approach may fail. In this case, a warning is emitted and the resulting
-shape is the union of the computed
-shape and the region omitted during triangulation. To avoid these failures, the parameter hollowingThresh may be set to a value larger than the number of data points: above this threshold, all points will be triangulated.
As a result, the outmost boundary of the
-shape is used, being a possibly concave, but always strictly simple polygon.
Convex hull
While the convex hull (generally) forms a coarser approximation to the data outline than
-shapes do, this method is by far faster and features a much smaller memory footprint. As the name indicates, the resulting polygon is convex.
Minimum enclosing (oriented) rectangle
Based on the convex hull of the point set, this method derives the minimum rectangle that encloses all data points. This rectangle is oriented arbitrarily i.e. it is generally not axis-aligned.
Parameter description
Remarks: mandatory
Specify the path to the datamanager or grid/raster whose data bounds shall be determined.
Remarks: estimable
The boundary polygon will be saved to this file.
Estimation rule: [current directory] / [ODM name] + _bounds.[oformat_vector] .
Remarks: estimable
The boundary file will be exported using this format.
Estimation rule: default format for [oformat_vector] .
Remarks: default=convexHull
Possible values: convexHull ......... convex hull (strictly convex boundary polygon) minimumRectangle ... minimum enclosing, oriented rectangle alphaShape ......... alpha shape ( strictly simple boundary polygon with dished parts but without holes)
The type (level of detail) used for the derivation of the data boundary / outline. Alpha shapes are the most complex type representing the detailed data outline including concave as well as convex parts. The convex hull does not contain dished parts and the minimum (oriented) rectangle is the coarsest approximation of the data outline.
Remarks: optional
In the determination of the alpha shape, triangles with a circumcircle radius larger than alphaRadius are removed consecutively, beginning at the convex hull.
If not given, use the minimum value that still leads to 1 connected component / polygon.
Remarks: default=500000
Above this point count, triangulate points near the outermost contour of data only.
If all points fit into memory, some problems may be avoided by specification of a high enough threshold.
Remarks: estimable
Possible values: point ... pixel (center) represents a point, mainly used for DTM grids area .... pixel represents area, mainly used for rater images like hill shading, etc.
If 'point' (grid), triangulate the pixel centers. If 'area' (raster), triangulate the pixel corners.
Estimation rule: use meta data, if available. Otherwise, use 'point'.
Examples
The data used in the following example are located in the directory $OPALS_ROOT/demo/. As the derivation of boundary lines relies on an ODM, the respective point cloud data has to be imported first. In this example, the dataset strip31.laz is used. To load the data into the ODM and rotate it counter-clockwise about the z-axis by 5°, change into the demo directory and type:
In this example, only the mandatory parameter (inFile) is specified. Thus, the command is simply:
It produces the boundary file strip31_bounds.shp, using 'convexHull' as the default boundsType. The output is the boundary line as shown in the figure of subsection Convex hull.
- Date
- 22.11.2011
