Label Images with Cloud Vision AI
Made by Google Cloud
Extracts labels from images and saves to Firestore using Cloud Vision API.
- Works with
- Cloud Storage and Cloud Firestore
- Version
- 0.1.6 | Source code
- Tags
- ai, videos, cloud-vision, image-recognition, image-classification, google-ai, cloud-vision-api
- License
- Apache-2.0
- Publisher
- Google Cloud
- Report
- Bug
- Abuse
How this extension works
This extension extracts text from jpg or png images uploaded to Cloud Storage and writes the extracted labels to Firestore, using the Cloud Vision API.
On install, you will be asked to provide a Cloud Storage bucket where files will be uploaded, and a Firestore collection to write extracted labels back to.
Whenever a new jpg or png image is uploaded to the specified bucket, a Cloud Function is triggered that calls the Cloud Vision API to extract labels, and stores the result in document that has a file
field with the full gs://
path of the file in Cloud Storage.
To access the resulting labels, you will need to use a query to find the correct document. In JavaScript the query would look like this:
firebase
.firestore()
.collection(config.collectionPath) // 馃憟 the collection you configured
.where('file', '==', filePath) // 馃憟 the uploaded file, in format: "gs://${object.bucket}/${object.name}"
.get();
Use Cases
Here are some ways to use image labeling in your application:
- E-commerce: Extract tags from product images for better search discovery and recommendations.
- Content filtering: Analyze and understand image content to filter out irrelevant or inappropriate content from search results.
- Image and video search: Enable search algorithms to understand image content and search results based on visual data.
- Surveillance and security: Improve real-time alert systems in detecting anomalies or specific activities by interpreting image labels.
- Assistance for visually impaired users: Provide accurate descriptions of images to enhance the digital experience for visually impaired users.
Additional Setup
Ensure you have a Cloud Firestore database and Cloud Storage bucket set up in your Firebase project.
Billing
This extension uses other Firebase or Google Cloud Platform services which may have associated charges:
- Cloud Vision API
- Cloud Storage
- Cloud Firestore
- Cloud Functions (See FAQs)
When you use Firebase Extensions, you鈥檙e only charged for the underlying resources that you use. A paid-tier (Blaze) billing plan is required because the extension uses Cloud Vision API.