This function makes any number of pixel images compatible,
by converting them all to a common pixel grid.
The command harmonise
is generic. This is the
method for objects of class "im"
.
At least one of the arguments ...
must be a pixel image.
Some arguments may be windows (objects of class "owin"
),
functions (function(x,y)
) or numerical constants. These will be
converted to images using as.im
.
The common pixel grid is determined by inspecting all the pixel
images in the argument list, computing the bounding box of all the
images, then finding the image with the highest spatial resolution,
and extending its pixel grid to cover the bounding box.
The return value is a list with entries corresponding to the input
arguments.
If the arguments were named (name=value
) then the return value
also carries these names.
If you just want to determine the appropriate pixel resolution,
without converting the images, use commonGrid
.