scaleImage {PET} | R Documentation |
Scales the minimum of an image to 0 and the mean or the maximum to 1.
scaleImage(image, mode = "mean")
image |
The raw image data. |
mode |
|
Returns the scaled data.
Joern Schulz, jschulz78@web.de.
(A <- matrix(-9:10,nrow=4)) scaleImage(A) rm(A)