## S3 method for class 'im':
harmonise(\dots)## S3 method for class 'im':
harmonize(\dots)
"im"
)
or data which can be converted to pixel images by as.im
....
,
whose entries are pixel images. 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
.
commonGrid
,
compatible.im
,
as.im
A <- setcov(square(1))
B <- function(x,y) { x }
G <- density(runifpoint(42))
harmonise(X=A, Y=B, Z=G)
Run the code above in your browser using DataLab