read.bmp {bmp} | R Documentation |
Limited to 8 bit greyscale images and 24 bit RGB images.
read.bmp(f, Verbose = FALSE)
f |
File to open |
Verbose |
Give verbose warnings (default FALSE) |
array of dims height x width x channels
jefferis
## Not run:
library(pixmap)
r=read.bmp('myrgbimage.bmp')
pr=pixmapRGB(r)
r=read.bmp('mygreyimage.bmp')
pr=pixmapGrey(r)
plot(pr)
## End(Not run)