save_json {imgrec} | R Documentation |
save annotation data as JSON
Description
Writes raw JSON data as returned by the Google Vision API to a UTF-8 encoded local file.
Usage
save_json(annotations, file)
Arguments
annotations |
An annotation object created with |
file |
Local path where the JSON data should be stored. |
Value
nothing.
Examples
## Not run:
gvision_init()
finn_image <- 'https://upload.wikimedia.org/wikipedia/en/2/2a/Finn-Force_Awakens_%282015%29.png'
results <- get_annotations(images = finn_image, features = 'all',
max_res = 10, mode = 'url')
temp_file_path <- tempfile(fileext = '.json')
save_json(results, temp_file_path)
## End(Not run)
[Package imgrec version 0.1.4 Index]