spatstat (version 1.26-1)

harmonise.im: Make Pixel Images Compatible

Description

Convert several pixel images to a common pixel raster.

Usage

harmonise.im(...)
harmonize.im(...)

Arguments

...
Any number of pixel images (objects of class "im") or data which can be converted to pixel images by as.im.

Value

  • A list, of length equal to the number of arguments ..., whose entries are pixel images.

Details

This function makes any number of pixel images compatible, by converting them all to a common pixel grid.

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.

See Also

commonGrid, compatible.im, as.im

Examples

Run this code
A <- setcov(square(1))
   B <- function(x,y) { x }
   G <- density(runifpoint(42))
   harmonise.im(X=A, Y=B, Z=G)

Run the code above in your browser using DataCamp Workspace