https://github.com/googlecloudplatform/terraform-ml-image-annotation-gcf
Deploys an app for ml image annotation using gcf
https://github.com/googlecloudplatform/terraform-ml-image-annotation-gcf
cft-terraform jump-start-solutions
Last synced: 4 months ago
JSON representation
Deploys an app for ml image annotation using gcf
- Host: GitHub
- URL: https://github.com/googlecloudplatform/terraform-ml-image-annotation-gcf
- Owner: GoogleCloudPlatform
- License: apache-2.0
- Created: 2023-04-28T21:08:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-11T23:52:40.000Z (6 months ago)
- Last Synced: 2024-12-18T08:41:31.490Z (6 months ago)
- Topics: cft-terraform, jump-start-solutions
- Language: TypeScript
- Homepage: https://registry.terraform.io/modules/GoogleCloudPlatform/terraform-ml-image-annotation-gcf/google
- Size: 1.63 MB
- Stars: 26
- Watchers: 14
- Forks: 19
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Image Processing on Google Cloud
This solution includes frontend and backend code to demonstrate image processing use cases on Google Cloud.
Image processing is one of the most tangible ways to incorporate AI to improve customer operations. Examples include defect detection in manufacturing, unsafe image detection for user-generated content, and disease diagnosis in healthcare, among others. However, doing this in a scalable way requires the integration of several GCP products.
The presented solution uses the following technologies:
- [Cloud Functions](https://cloud.google.com/functions/docs)
- [Vision AI](https://cloud.google.com/vision)### Files
Some important files and folders.
| File/Folder | Description |
| ------------------ | ------------------------------------------------------------------------------------ |
| /src/frontend | React web app: A frontend to upload images/urls to the backend for image processing. |
| /src/gcf | Backend Cloud Functions code that calls the Vision API for image processing. |
| /infra | Terraform infrastructure for deploying the solution. |
| /.github/workflows | Github workflows for CI and testing |
| /build | Cloud Build configuration files for CFT testing. |