├── .gitattributes ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── composer.json ├── metadata └── V1 │ ├── Geometry.php │ ├── ImageAnnotator.php │ ├── ProductSearch.php │ ├── ProductSearchService.php │ ├── TextAnnotation.php │ └── WebDetection.php └── src └── V1 ├── AddProductToProductSetRequest.php ├── AnnotateFileRequest.php ├── AnnotateFileResponse.php ├── AnnotateImageRequest.php ├── AnnotateImageResponse.php ├── AsyncAnnotateFileRequest.php ├── AsyncAnnotateFileResponse.php ├── AsyncBatchAnnotateFilesRequest.php ├── AsyncBatchAnnotateFilesResponse.php ├── AsyncBatchAnnotateImagesRequest.php ├── AsyncBatchAnnotateImagesResponse.php ├── BatchAnnotateFilesRequest.php ├── BatchAnnotateFilesResponse.php ├── BatchAnnotateImagesRequest.php ├── BatchAnnotateImagesResponse.php ├── BatchOperationMetadata.php ├── BatchOperationMetadata └── State.php ├── Block.php ├── Block └── BlockType.php ├── BoundingPoly.php ├── Client ├── ImageAnnotatorClient.php └── ProductSearchClient.php ├── ColorInfo.php ├── CreateProductRequest.php ├── CreateProductSetRequest.php ├── CreateReferenceImageRequest.php ├── CropHint.php ├── CropHintsAnnotation.php ├── CropHintsParams.php ├── DeleteProductRequest.php ├── DeleteProductSetRequest.php ├── DeleteReferenceImageRequest.php ├── DominantColorsAnnotation.php ├── EntityAnnotation.php ├── FaceAnnotation.php ├── FaceAnnotation ├── Landmark.php └── Landmark │ └── Type.php ├── Feature.php ├── Feature └── Type.php ├── GcsDestination.php ├── GcsSource.php ├── GetProductRequest.php ├── GetProductSetRequest.php ├── GetReferenceImageRequest.php ├── Image.php ├── ImageAnnotationContext.php ├── ImageContext.php ├── ImageProperties.php ├── ImageSource.php ├── ImportProductSetsGcsSource.php ├── ImportProductSetsInputConfig.php ├── ImportProductSetsRequest.php ├── ImportProductSetsResponse.php ├── InputConfig.php ├── LatLongRect.php ├── Likelihood.php ├── ListProductSetsRequest.php ├── ListProductSetsResponse.php ├── ListProductsInProductSetRequest.php ├── ListProductsInProductSetResponse.php ├── ListProductsRequest.php ├── ListProductsResponse.php ├── ListReferenceImagesRequest.php ├── ListReferenceImagesResponse.php ├── LocalizedObjectAnnotation.php ├── LocationInfo.php ├── NormalizedVertex.php ├── OperationMetadata.php ├── OperationMetadata └── State.php ├── OutputConfig.php ├── Page.php ├── Paragraph.php ├── Position.php ├── Product.php ├── Product └── KeyValue.php ├── ProductSearchParams.php ├── ProductSearchResults.php ├── ProductSearchResults ├── GroupedResult.php ├── ObjectAnnotation.php └── Result.php ├── ProductSet.php ├── ProductSetPurgeConfig.php ├── Property.php ├── PurgeProductsRequest.php ├── ReferenceImage.php ├── RemoveProductFromProductSetRequest.php ├── SafeSearchAnnotation.php ├── Symbol.php ├── TextAnnotation.php ├── TextAnnotation ├── DetectedBreak.php ├── DetectedBreak │ └── BreakType.php ├── DetectedLanguage.php └── TextProperty.php ├── TextDetectionParams.php ├── UpdateProductRequest.php ├── UpdateProductSetRequest.php ├── Vertex.php ├── WebDetection.php ├── WebDetection ├── WebEntity.php ├── WebImage.php ├── WebLabel.php └── WebPage.php ├── WebDetectionParams.php ├── Word.php └── resources ├── image_annotator_client_config.json ├── image_annotator_descriptor_config.php ├── image_annotator_rest_client_config.php ├── product_search_client_config.json ├── product_search_descriptor_config.php └── product_search_rest_client_config.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/.gitattributes -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/composer.json -------------------------------------------------------------------------------- /metadata/V1/Geometry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/Geometry.php -------------------------------------------------------------------------------- /metadata/V1/ImageAnnotator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/ImageAnnotator.php -------------------------------------------------------------------------------- /metadata/V1/ProductSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/ProductSearch.php -------------------------------------------------------------------------------- /metadata/V1/ProductSearchService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/ProductSearchService.php -------------------------------------------------------------------------------- /metadata/V1/TextAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/TextAnnotation.php -------------------------------------------------------------------------------- /metadata/V1/WebDetection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/metadata/V1/WebDetection.php -------------------------------------------------------------------------------- /src/V1/AddProductToProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AddProductToProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/AnnotateFileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AnnotateFileRequest.php -------------------------------------------------------------------------------- /src/V1/AnnotateFileResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AnnotateFileResponse.php -------------------------------------------------------------------------------- /src/V1/AnnotateImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AnnotateImageRequest.php -------------------------------------------------------------------------------- /src/V1/AnnotateImageResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AnnotateImageResponse.php -------------------------------------------------------------------------------- /src/V1/AsyncAnnotateFileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncAnnotateFileRequest.php -------------------------------------------------------------------------------- /src/V1/AsyncAnnotateFileResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncAnnotateFileResponse.php -------------------------------------------------------------------------------- /src/V1/AsyncBatchAnnotateFilesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncBatchAnnotateFilesRequest.php -------------------------------------------------------------------------------- /src/V1/AsyncBatchAnnotateFilesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncBatchAnnotateFilesResponse.php -------------------------------------------------------------------------------- /src/V1/AsyncBatchAnnotateImagesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncBatchAnnotateImagesRequest.php -------------------------------------------------------------------------------- /src/V1/AsyncBatchAnnotateImagesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/AsyncBatchAnnotateImagesResponse.php -------------------------------------------------------------------------------- /src/V1/BatchAnnotateFilesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchAnnotateFilesRequest.php -------------------------------------------------------------------------------- /src/V1/BatchAnnotateFilesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchAnnotateFilesResponse.php -------------------------------------------------------------------------------- /src/V1/BatchAnnotateImagesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchAnnotateImagesRequest.php -------------------------------------------------------------------------------- /src/V1/BatchAnnotateImagesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchAnnotateImagesResponse.php -------------------------------------------------------------------------------- /src/V1/BatchOperationMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchOperationMetadata.php -------------------------------------------------------------------------------- /src/V1/BatchOperationMetadata/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BatchOperationMetadata/State.php -------------------------------------------------------------------------------- /src/V1/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Block.php -------------------------------------------------------------------------------- /src/V1/Block/BlockType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Block/BlockType.php -------------------------------------------------------------------------------- /src/V1/BoundingPoly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/BoundingPoly.php -------------------------------------------------------------------------------- /src/V1/Client/ImageAnnotatorClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Client/ImageAnnotatorClient.php -------------------------------------------------------------------------------- /src/V1/Client/ProductSearchClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Client/ProductSearchClient.php -------------------------------------------------------------------------------- /src/V1/ColorInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ColorInfo.php -------------------------------------------------------------------------------- /src/V1/CreateProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CreateProductRequest.php -------------------------------------------------------------------------------- /src/V1/CreateProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CreateProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/CreateReferenceImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CreateReferenceImageRequest.php -------------------------------------------------------------------------------- /src/V1/CropHint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CropHint.php -------------------------------------------------------------------------------- /src/V1/CropHintsAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CropHintsAnnotation.php -------------------------------------------------------------------------------- /src/V1/CropHintsParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/CropHintsParams.php -------------------------------------------------------------------------------- /src/V1/DeleteProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/DeleteProductRequest.php -------------------------------------------------------------------------------- /src/V1/DeleteProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/DeleteProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/DeleteReferenceImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/DeleteReferenceImageRequest.php -------------------------------------------------------------------------------- /src/V1/DominantColorsAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/DominantColorsAnnotation.php -------------------------------------------------------------------------------- /src/V1/EntityAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/EntityAnnotation.php -------------------------------------------------------------------------------- /src/V1/FaceAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/FaceAnnotation.php -------------------------------------------------------------------------------- /src/V1/FaceAnnotation/Landmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/FaceAnnotation/Landmark.php -------------------------------------------------------------------------------- /src/V1/FaceAnnotation/Landmark/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/FaceAnnotation/Landmark/Type.php -------------------------------------------------------------------------------- /src/V1/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Feature.php -------------------------------------------------------------------------------- /src/V1/Feature/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Feature/Type.php -------------------------------------------------------------------------------- /src/V1/GcsDestination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/GcsDestination.php -------------------------------------------------------------------------------- /src/V1/GcsSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/GcsSource.php -------------------------------------------------------------------------------- /src/V1/GetProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/GetProductRequest.php -------------------------------------------------------------------------------- /src/V1/GetProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/GetProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/GetReferenceImageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/GetReferenceImageRequest.php -------------------------------------------------------------------------------- /src/V1/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Image.php -------------------------------------------------------------------------------- /src/V1/ImageAnnotationContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImageAnnotationContext.php -------------------------------------------------------------------------------- /src/V1/ImageContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImageContext.php -------------------------------------------------------------------------------- /src/V1/ImageProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImageProperties.php -------------------------------------------------------------------------------- /src/V1/ImageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImageSource.php -------------------------------------------------------------------------------- /src/V1/ImportProductSetsGcsSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImportProductSetsGcsSource.php -------------------------------------------------------------------------------- /src/V1/ImportProductSetsInputConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImportProductSetsInputConfig.php -------------------------------------------------------------------------------- /src/V1/ImportProductSetsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImportProductSetsRequest.php -------------------------------------------------------------------------------- /src/V1/ImportProductSetsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ImportProductSetsResponse.php -------------------------------------------------------------------------------- /src/V1/InputConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/InputConfig.php -------------------------------------------------------------------------------- /src/V1/LatLongRect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/LatLongRect.php -------------------------------------------------------------------------------- /src/V1/Likelihood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Likelihood.php -------------------------------------------------------------------------------- /src/V1/ListProductSetsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductSetsRequest.php -------------------------------------------------------------------------------- /src/V1/ListProductSetsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductSetsResponse.php -------------------------------------------------------------------------------- /src/V1/ListProductsInProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductsInProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/ListProductsInProductSetResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductsInProductSetResponse.php -------------------------------------------------------------------------------- /src/V1/ListProductsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductsRequest.php -------------------------------------------------------------------------------- /src/V1/ListProductsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListProductsResponse.php -------------------------------------------------------------------------------- /src/V1/ListReferenceImagesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListReferenceImagesRequest.php -------------------------------------------------------------------------------- /src/V1/ListReferenceImagesResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ListReferenceImagesResponse.php -------------------------------------------------------------------------------- /src/V1/LocalizedObjectAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/LocalizedObjectAnnotation.php -------------------------------------------------------------------------------- /src/V1/LocationInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/LocationInfo.php -------------------------------------------------------------------------------- /src/V1/NormalizedVertex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/NormalizedVertex.php -------------------------------------------------------------------------------- /src/V1/OperationMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/OperationMetadata.php -------------------------------------------------------------------------------- /src/V1/OperationMetadata/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/OperationMetadata/State.php -------------------------------------------------------------------------------- /src/V1/OutputConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/OutputConfig.php -------------------------------------------------------------------------------- /src/V1/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Page.php -------------------------------------------------------------------------------- /src/V1/Paragraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Paragraph.php -------------------------------------------------------------------------------- /src/V1/Position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Position.php -------------------------------------------------------------------------------- /src/V1/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Product.php -------------------------------------------------------------------------------- /src/V1/Product/KeyValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Product/KeyValue.php -------------------------------------------------------------------------------- /src/V1/ProductSearchParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSearchParams.php -------------------------------------------------------------------------------- /src/V1/ProductSearchResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSearchResults.php -------------------------------------------------------------------------------- /src/V1/ProductSearchResults/GroupedResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSearchResults/GroupedResult.php -------------------------------------------------------------------------------- /src/V1/ProductSearchResults/ObjectAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSearchResults/ObjectAnnotation.php -------------------------------------------------------------------------------- /src/V1/ProductSearchResults/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSearchResults/Result.php -------------------------------------------------------------------------------- /src/V1/ProductSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSet.php -------------------------------------------------------------------------------- /src/V1/ProductSetPurgeConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ProductSetPurgeConfig.php -------------------------------------------------------------------------------- /src/V1/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Property.php -------------------------------------------------------------------------------- /src/V1/PurgeProductsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/PurgeProductsRequest.php -------------------------------------------------------------------------------- /src/V1/ReferenceImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/ReferenceImage.php -------------------------------------------------------------------------------- /src/V1/RemoveProductFromProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/RemoveProductFromProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/SafeSearchAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/SafeSearchAnnotation.php -------------------------------------------------------------------------------- /src/V1/Symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Symbol.php -------------------------------------------------------------------------------- /src/V1/TextAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextAnnotation.php -------------------------------------------------------------------------------- /src/V1/TextAnnotation/DetectedBreak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextAnnotation/DetectedBreak.php -------------------------------------------------------------------------------- /src/V1/TextAnnotation/DetectedBreak/BreakType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextAnnotation/DetectedBreak/BreakType.php -------------------------------------------------------------------------------- /src/V1/TextAnnotation/DetectedLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextAnnotation/DetectedLanguage.php -------------------------------------------------------------------------------- /src/V1/TextAnnotation/TextProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextAnnotation/TextProperty.php -------------------------------------------------------------------------------- /src/V1/TextDetectionParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/TextDetectionParams.php -------------------------------------------------------------------------------- /src/V1/UpdateProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/UpdateProductRequest.php -------------------------------------------------------------------------------- /src/V1/UpdateProductSetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/UpdateProductSetRequest.php -------------------------------------------------------------------------------- /src/V1/Vertex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Vertex.php -------------------------------------------------------------------------------- /src/V1/WebDetection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetection.php -------------------------------------------------------------------------------- /src/V1/WebDetection/WebEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetection/WebEntity.php -------------------------------------------------------------------------------- /src/V1/WebDetection/WebImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetection/WebImage.php -------------------------------------------------------------------------------- /src/V1/WebDetection/WebLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetection/WebLabel.php -------------------------------------------------------------------------------- /src/V1/WebDetection/WebPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetection/WebPage.php -------------------------------------------------------------------------------- /src/V1/WebDetectionParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/WebDetectionParams.php -------------------------------------------------------------------------------- /src/V1/Word.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/Word.php -------------------------------------------------------------------------------- /src/V1/resources/image_annotator_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/image_annotator_client_config.json -------------------------------------------------------------------------------- /src/V1/resources/image_annotator_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/image_annotator_descriptor_config.php -------------------------------------------------------------------------------- /src/V1/resources/image_annotator_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/image_annotator_rest_client_config.php -------------------------------------------------------------------------------- /src/V1/resources/product_search_client_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/product_search_client_config.json -------------------------------------------------------------------------------- /src/V1/resources/product_search_descriptor_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/product_search_descriptor_config.php -------------------------------------------------------------------------------- /src/V1/resources/product_search_rest_client_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/google-cloud-php-vision/HEAD/src/V1/resources/product_search_rest_client_config.php --------------------------------------------------------------------------------