{"id":13749888,"url":"https://github.com/GoogleCloudPlatform/cloud-vision","last_synced_at":"2025-05-09T13:31:28.698Z","repository":{"id":3929173,"uuid":"50685592","full_name":"GoogleCloudPlatform/cloud-vision","owner":"GoogleCloudPlatform","description":"Sample code for Google Cloud Vision","archived":true,"fork":false,"pushed_at":"2022-04-18T16:37:45.000Z","size":4070,"stargazers_count":1109,"open_issues_count":0,"forks_count":886,"subscribers_count":106,"default_branch":"master","last_synced_at":"2025-04-19T22:18:13.298Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://cloud.google.com/vision","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GoogleCloudPlatform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-29T19:22:07.000Z","updated_at":"2025-04-14T03:08:59.000Z","dependencies_parsed_at":"2022-09-09T21:31:42.716Z","dependency_job_id":null,"html_url":"https://github.com/GoogleCloudPlatform/cloud-vision","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fcloud-vision","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fcloud-vision/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fcloud-vision/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fcloud-vision/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GoogleCloudPlatform","download_url":"https://codeload.github.com/GoogleCloudPlatform/cloud-vision/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253258221,"owners_count":21879615,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T07:01:16.738Z","updated_at":"2025-05-09T13:31:28.308Z","avatar_url":"https://github.com/GoogleCloudPlatform.png","language":"Python","readme":"![status: inactive](https://img.shields.io/badge/status-inactive-red.svg)\n\n**This repo has been deprecated**. All new work will be found at a given\nlanguage's repo:\n\n[C# / .NET][c#] | [Go lang][golang] | [Java][java] | [Node.js][nodejs] |\n[PHP][php] | [Python][python] | [Ruby][ruby]\n\nNote: The [Android](android/) and [IOS](ios/) samples haven't been moved to the\nmain [Android][android] and [IOS][ios] sample repos yet.\n\n[c#]: //github.com/GoogleCloudPlatform/dotnet-docs-samples/tree/master/vision/api\n[golang]: //github.com/GoogleCloudPlatform/golang-samples/tree/master/vision\n[java]: //github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision\n[nodejs]: //github.com/GoogleCloudPlatform/nodejs-docs-samples/tree/master/vision\n[php]: //github.com/GoogleCloudPlatform/php-docs-samples/tree/master/vision\n[python]: //github.com/GoogleCloudPlatform/python-docs-samples/tree/master/vision\n[ruby]: //github.com/GoogleCloudPlatform/ruby-docs-samples/tree/master/vision\n[android]: //github.com/GoogleCloudPlatform/android-docs-samples/\n[ios]: //github.com/GoogleCloudPlatform/ios-docs-samples/\n\n-----\n\n# Google Cloud Vision API examples\n\nThis repo contains some [Google Cloud Vision\nAPI](https://cloud.google.com/vision/) examples.\n\nThe samples are organized by language and mobile platform.\n\n## Language Examples\n\n### Landmark Detection Using Google Cloud Storage\n\nThis sample identifies a landmark within an image stored on\nGoogle Cloud Storage.\n\n- [Documentation and Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/landmark-detection)\n- [Documentation and Python Code](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/python/landmark_detection/)\n\n### Face Detection\n\nSee the [face detection](https://cloud.google.com/vision/docs/face-tutorial) tutorial in the docs.\n\n- [Python Code](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/vision/api/face_detection)\n- [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/face-detection)\n\n### Label Detection\n\nSee the [label detection](https://cloud.google.com/vision/docs/label-tutorial) tutorial in the docs.\n\n- [Python Code](https://github.com/GoogleCloudPlatform/python-docs-samples/tree/master/vision/api/label)\n- [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/label)\n\n### Label Tagging Using Kubernetes\n\n*Awwvision* is a [Kubernetes](https://github.com/kubernetes/kubernetes/) and\n[Cloud Vision API](https://cloud.google.com/vision/) sample that uses the\nVision API to classify (label) images from Reddit's\n[/r/aww](https://reddit.com/r/aww) subreddit, and display the labelled results\nin a web application.\n\n- [Documentation and Python Code](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/python/awwvision)\n\n### Text Detection Using the Vision API\n\nThis sample uses `TEXT_DETECTION` Vision API requests to build an inverted\nindex from the stemmed words found in the images, and stores that index in a\n[Redis](redis.io) database. The resulting index can be queried to find\nimages that match a given set of words, and to list text that was found in each\nmatching image.\n\nFor finding stopwords and doing stemming, the Python example uses the\n[nltk](http://www.nltk.org/index.html) (Natural Language Toolkit) library.\nThe Java example uses the [OpenNLP](https://opennlp.apache.org/) library.\n\n- [Documentation and Python Code](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/python/text)\n- [Documentation and Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/vision/text)\n\n## Mobile Platform Examples\n\n### Image Detection Using Android Device Photos\n\nThis simple single-activity sample that shows you how to make a call to the\nCloud Vision API with an image picked from your device’s gallery.\n\n- [Documentation and Android Code](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/android)\n\n### Image Detection Using iOS Device Photos\n\nThe Swift and Objective-C versions of this app use the Vision API to run label\nand face detection on an image from the device's photo library. The resulting\nlabels and face metadata from the API response are displayed in the UI.\n\nCheck out the Swift or Objective-C READMEs for specific getting started\ninstructions.\n\n- [Documentation (Objective-C)](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/ios/Objective-C/README.md)\n\n- [Documentation (Swift)](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/ios/Swift/README.md)\n\n- [iOS Sample Code](https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/ios)\n\n","funding_links":[],"categories":["Python","\u003ca name=\"Python\"\u003e\u003c/a\u003ePython"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGoogleCloudPlatform%2Fcloud-vision","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGoogleCloudPlatform%2Fcloud-vision","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGoogleCloudPlatform%2Fcloud-vision/lists"}