image.CornerDetectionF9 - Detect Corners in images

The image.CornerDetectionF9 R package detects corners in images, namely:

Examples

Read in an image with values in the 0-255 range (pgm image: http://netpbm.sourceforge.net/doc/pgm.html)

library(pixmap)
library(image.CornerDetectionF9)
imagelocation <- system.file("extdata", "chairs.pgm", package = "image.CornerDetectionF9")
image   <- read.pnm(file = imagelocation, cellres = 1)
x       <- image@grey * 255
corners <- image_detect_corners(x, 100)
plot(image)
points(corners$x, corners$y, col = "red", pch = 20, lwd = 0.5)

Support in image recognition

Need support in image recognition? Contact BNOSAC: http://www.bnosac.be

Copy Link

Version

Down Chevron

Install

install.packages('image.CornerDetectionF9')

Monthly Downloads

125

Version

0.1.0

License

BSD_2_clause + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

July 27th, 2020

Functions in image.CornerDetectionF9 (0.1.0)