The image.CannyEdges R package detects edges in images.
Read in an image with values in the 0-255 range (pgm image: http://netpbm.sourceforge.net/doc/pgm.html)
library(image.CannyEdges)
library(pixmap)
imagelocation <- system.file("extdata", "chairs.pgm", package="image.CannyEdges")
image <- read.pnm(file = imagelocation, cellres = 1)
x <- image@grey * 255
edges <- image_canny_edge_detector(x)
edges
plot(edges)
The package requires libpng and fftw3 to be installed In Ubuntu this is done as follows
sudo apt-get install libpng-dev fftw3 fftw3-dev
Need support in image recognition? Contact BNOSAC: http://www.bnosac.be