border | R Documentation |
Computes the border region of a window, that is, the region lying within a specified distance of the boundary of a window.
border(w, r, outside=FALSE, ...)
w |
A window (object of class |
r |
Numerical value. |
outside |
Logical value determining whether to compute the
border outside or inside |
... |
Optional arguments passed to |
By default (if outside=FALSE
),
the border region is the subset of w
lying within a distance r
of the boundary of w
.
It is computed by eroding w
by the distance r
(using
erosion
) and
subtracting this eroded window from the original window w
.
If outside=TRUE
, the border region is the set of locations
outside w
lying within a distance r
of w
.
It is computed by dilating w
by the distance r
(using dilation
) and
subtracting the original window w
from the dilated window.
A window (object of class "owin"
).
and \rolf
erosion
,
dilation
# rectangle
u <- unit.square()
border(u, 0.1)
border(u, 0.1, outside=TRUE)
# polygon
plot(letterR)
plot(border(letterR, 0.1), add=TRUE)
plot(border(letterR, 0.1, outside=TRUE), add=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.