Yes, the Google Vision API can be integrated with your Google Cloud Storage bucket (it's also mentioned under "Integrated REST API" in the Product Overview <https://cloud.google.com/vision/>).
There is a How-to guide <https://cloud.google.com/vision/docs/request#providing_the_image> that explains that you can provide an image with the request by - uploading the image (as a base64-encoded string) - passing the Cloud Storage URI of an image in a bucket - or passing a publicly-accessible HTTP/HTTPS URL of an image somewhere on the WWW You can use many different clients to send the request to the Vision API, e.g. a Python app that is hosted on App Engine could send the request to the API and store the response in Cloud Datastore (one entity for each image in the bucket). Since you want to detect only images that are stored in a bucket, you could also use a Cloud Function <https://cloud.google.com/functions> (JavaScript) that is automatically triggered every time a new image is created in a bucket (tutorial with code sample here <https://cloud.google.com/functions/docs/tutorials/storage>). On Sun, 18 Feb 2018 at 18:13 Dzaner Bojic <[email protected]> wrote: > > Can Google Vision API do the following? > > I want to upload my own images as the library and assign a value for what > each one is. > > Then when I use the Image Detection, I want it to look in my library > (bucket) only and identify based on images in my own bucket. That is it. > > Seems like it is using the whole WWW and returning all images via label > detection, but I want to just use my own bucket. > > If you know how, please let me know! > > Please help! > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/40f92121-11f3-4b16-80dc-05abdd4eb7ff%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/40f92121-11f3-4b16-80dc-05abdd4eb7ff%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALdDuQ7Xwe8%2BKL%3DkD7Yj-6xe%2BKGR5x_YvmNCNvEFvFYJ7FT8JQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
