RoogleVision
RoogleVision copied to clipboard
R Package for Image Recognition using Google Cloud Vision
I tried `RoogleVision` but found myself wanting to process multiple images at once without having to download files in R; this change worked for me so I'm sending it back...
library("RoogleVision") options("googleAuthR.client_id" = "XXXXXX") options("googleAuthR.client_secret" = "XXXXX") options("googleAuthR.scopes.selected" = c("https://www.googleapis.com/auth/cloud-platform")) googleAuthR::gar_auth() And I'm getting the error: Authentication options didn't match existing session token and not interactive session so unable to...
Hi @cloudyr, I hope you are doing well. I could see your code has a function to fetch the image responses based on various commands such as Face detection, label...
I have an image that has only one number in it. https://cloud.google.com/vision easily detects the text in the image and returns it. But RoogleVision (getGoogleVisionResponse) returns this message: **No features...
Hey, First of all, thank you for the package. I try to classify landmarks with the google vision API on Flickr-data. I do not want to download the data but...