cov.im | R Documentation |
Compute the covariance or correlation between (the corresponding pixel values in) several images.
cov.im(..., use = "everything", method = c("pearson", "kendall", "spearman"))
... |
Any number of arguments, each of which is
a pixel image (object of class |
use |
Argument passed to |
method |
Argument passed to |
The arguments ...
should be pixel images (objects of class "im"
).
Their spatial domains must overlap, but need not have the same
pixel dimensions.
These functions compute the covariance or correlation between the corresponding pixel values in the images given.
The pixel image domains are intersected, and converted to a common pixel resolution. Then the corresponding pixel values of each image are extracted. Finally the correlation or covariance between the pixel values of each pair of images, at corresponding pixels, is computed.
The result is a symmetric matrix with one row and column for each image.
The [i,j]
entry is the correlation or covariance between
the i
th and j
th images in the argument list.
The row names and column names of the matrix are copied from the
argument names if they were given (i.e. if the arguments were given
as name=value
).
Note that cor
and cov
are not generic, so you have to type cor.im
, cov.im
.
A symmetric matrix.
.
cor
,
cov
pairs.im
cor.im(bei.extra)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.