commonGrid | R Documentation |
Determine a common spatial domain and pixel resolution for several spatial objects such as images, masks, windows and point patterns.
commonGrid(...)
... |
Any number of pixel images (objects of class |
This function determines a common spatial resolution and spatial domain for several spatial objects.
The arguments ...
may be pixel images,
binary masks, or other spatial objects acceptable to as.mask
.
The common pixel grid is determined by inspecting all the pixel images and binary masks in the argument list, finding the pixel grid with the highest spatial resolution, and extending this pixel grid to cover the bounding box of all the spatial objects.
The return value is a binary mask M
, representing the bounding box
at the chosen pixel resolution.
Use as.im(X, W=M)
to convert a pixel image X
to this new
pixel resolution.
Use as.mask(W, xy=M)
to convert a window W
to a binary mask at this new pixel resolution.
See the Examples.
A binary mask (object of class "owin"
and type "mask"
).
and \rolf
harmonise.im
,
compatible.im
,
as.im
if(require(spatstat.random)) {
A <- setcov(square(1), dimyx=32)
G <- as.im(function(x,y) { x^2 - y }, W=owin(), dimyx=8)
H <- commonGrid(A, letterR, G)
newR <- as.mask(letterR, xy=H)
newG <- as.im(G, W=H)
if(interactive()) plot(solist(G=newG, R=newR), main="")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.