Karthik Ram *
* Totally not a cat person at all
Steven Johnson: Where good ideas come from
magick
files <- list.files("cameratrapimagedata",
full.names = TRUE)
text <- image_read(files) %>%
image_convert(type = 'grayscale') %>%
image_crop("1890x32") %>%
image_reducenoise(radius = 5) %>%
image_append(stack = T) %>%
image_ocr(options = list(tessedit_char_whitelist = "/0123456789:-°ACMP"))
cat(text)
files <- list.files("cameratrapimagedata",full.names = TRUE)
text <- image_read(files) %>%
image_convert(type ='grayscale') %>%
image_crop("1890x32") %>%
image_reducenoise(radius = 5) %>%
image_append(stack = T) %>%
image_ocr(options = list(tessedit_char_whitelist =
"/0123456789:-°ACMP"))
cat(text)
drake
github.com/ropensci/drake
target: prerequisite(s) recipe
pyopensci.org
joss.theoj.org