where.max | R Documentation |
Finds the spatial location(s) where a given pixel image attains its maximum or minimum value.
where.max(x, first = TRUE)
where.min(x, first = TRUE)
x |
A pixel image (object of class |
first |
Logical value. If |
This function finds the spatial location or locations where the
pixel image x
attains its maximum or minimum value.
The result is a point pattern giving the locations.
If first=TRUE
(the default), then only one location will
be returned, namely the location with the smallest y
coordinate
value which attains the maximum or minimum.
This behaviour is analogous to the functions
which.min
and
which.max
.
If first=FALSE
, then the function returns
the locations of all pixels where the
maximum (or minimum) value is attained. This could be a large
number of points.
A point pattern (object of class "ppp"
).
Summary.im
for computing the minimum and maximum
of pixel values;
eval.im
and Math.im
for mathematical
expressions involving images; solutionset
for finding
the set of pixels where a statement is true.
D <- distmap(letterR, invert=TRUE)
plot(D)
plot(where.max(D), add=TRUE, pch=16, cols="green")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.