spatstat (version 1.44-1)

harmonise.owin: Make Windows Compatible

Description

Convert several windows to a common pixel raster.

Usage

## S3 method for class 'owin':
harmonise(\dots)

## S3 method for class 'owin': harmonize(\dots)

Arguments

...
Any number of windows (objects of class "owin") or data which can be converted to windows by as.owin.

Value

  • A list of windows, of length equal to the number of arguments .... The list belongs to the class "solist".

Details

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

This only has an effect if one of the windows is a binary mask. If all the windows are rectangular or polygonal, they are returned unchanged.

The command harmonise is generic. This is the method for objects of class "owin". Each argument must be a window (object of class "owin"), or data that can be converted to a window by as.owin. The common pixel grid is determined by inspecting all the windows in the argument list, computing the bounding box of all the windows, then finding the binary mask with the finest 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 windows, use commonGrid.

See Also

commonGrid, harmonise.im, as.owin

Examples

Run this code
harmonise(X=letterR,
             Y=grow.rectangle(Frame(letterR), 0.2),
             Z=as.mask(letterR, eps=0.1),
             V=as.mask(letterR, eps=0.07))

Run the code above in your browser using DataCamp Workspace