inla.nonconvex.hull.RdConstructs a nonconvex boundary for a point set using morphological operations.
inla.nonconvex.hull(points,
convex = -0.15,
concave = convex,
resolution = 40,
eps = NULL,
crs = NULL)
inla.nonconvex.hull.basic(points,
convex = -0.15,
resolution = 40,
eps = NULL,
crs = NULL)2D point coordinates (2-column matrix).
Can alternatively be a SpatialPoints or SpatialPointsDataFrame object.
The desired extension radius. Also determines the smallest allowed convex curvature radius. Negative values are interpreted as fractions of the approximate initial set diameter.
The desired minimal concave curvature radius. Default is
concave=convex.
The internal computation resolution. A warning will be issued when this needs to be increased for higher accuracy, with the required resolution stated.
The polygonal curve simplification tolerance used for simplifying the
resulting boundary curve. See inla.simplify.curve for
details.
An optional CRS or inla.CRS object
Morphological dilation by convex, followed by closing by
concave, with minimum concave curvature radius concave.
If the dilated set has no gaps of width between
$$2 convex (\sqrt{1+2 concave/convex} - 1)$$
and
\(2 concave\),
then the minimum convex curvature radius is convex.
Special case concave=0 delegates to
inla.nonconvex.hull.basic
The implementation is based on the identity $$dilation(a) \& closing(b) = dilation(a+b) \& erosion(b)$$ where all operations are with respect to disks with the specified radii.
An inla.mesh.segment object.
Requires nndistF from the splancs package.