(This article was first published on Quantitative Ecology, and kindly contributed to R-bloggers)
This is how to use the Pixmap library to read in an image as a matrix.
> library(pixmap)
# the next command may only work on Linux
> system("convert foo.tiff foo.ppm")
> img <- read.pnm("foo.ppm")
To get info on your new object:
> str(img)
Although included in the previous output, the size of the image can be extracted by:
>img@size
Then to extract the red channel from the image for the first ten rows:
> myextract <- img@red[1:10,]
Or to extract the entire red channel to an actual matrix:
> red.mat<-matrix(NA,img@size[1],img@size[2])
> red.mat<-img@red
To leave a comment for the author, please follow the link and comment on his blog: Quantitative Ecology.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).