Skip to content

Instantly share code, notes, and snippets.

@abresler
Created June 10, 2015 19:09
Show Gist options
  • Save abresler/f3d7528cccdf6bb2ad52 to your computer and use it in GitHub Desktop.
Save abresler/f3d7528cccdf6bb2ad52 to your computer and use it in GitHub Desktop.
Fun Imager Example Delly-Curry Imager Example
## Dellie Meme
library(imager) ## install https://github.com/dahtah/imager/tree/master
library(magrittr)
library(dplyr)
lol_delly <-
'http://cavaliersnation.com/wp-content/uploads/2015/06/praUXJ9.jpg'
im <-
lol_delly %>%
load.image
t(1:3) %>%
layout()
im %>%
plot(main = "Original")
im.t %>%
plot(main="Before")
mclosing_square(im.t,2) %>%
plot(im, main="After morphological closing")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment