Packages

Cloud Vision API client library. Integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications.

Current section

Files

Jump to
google_api_vision lib google_api vision v1 model image_context.ex
Raw

lib/google_api/vision/v1/model/image_context.ex

# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.
defmodule GoogleApi.Vision.V1.Model.ImageContext do
@moduledoc """
Image context and/or feature-specific parameters.
## Attributes
* `cropHintsParams` (*type:* `GoogleApi.Vision.V1.Model.CropHintsParams.t`, *default:* `nil`) - Parameters for crop hints annotation request.
* `languageHints` (*type:* `list(String.t)`, *default:* `nil`) - List of languages to use for TEXT_DETECTION. In most cases, an empty value
yields the best results since it enables automatic language detection. For
languages based on the Latin alphabet, setting `language_hints` is not
needed. In rare cases, when the language of the text in the image is known,
setting a hint will help get better results (although it will be a
significant hindrance if the hint is wrong). Text detection returns an
error if one or more of the specified languages is not one of the
[supported languages](https://cloud.google.com/vision/docs/languages).
* `latLongRect` (*type:* `GoogleApi.Vision.V1.Model.LatLongRect.t`, *default:* `nil`) - Not used.
* `productSearchParams` (*type:* `GoogleApi.Vision.V1.Model.ProductSearchParams.t`, *default:* `nil`) - Parameters for product search.
* `webDetectionParams` (*type:* `GoogleApi.Vision.V1.Model.WebDetectionParams.t`, *default:* `nil`) - Parameters for web detection.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:cropHintsParams => GoogleApi.Vision.V1.Model.CropHintsParams.t(),
:languageHints => list(String.t()),
:latLongRect => GoogleApi.Vision.V1.Model.LatLongRect.t(),
:productSearchParams => GoogleApi.Vision.V1.Model.ProductSearchParams.t(),
:webDetectionParams => GoogleApi.Vision.V1.Model.WebDetectionParams.t()
}
field(:cropHintsParams, as: GoogleApi.Vision.V1.Model.CropHintsParams)
field(:languageHints, type: :list)
field(:latLongRect, as: GoogleApi.Vision.V1.Model.LatLongRect)
field(:productSearchParams, as: GoogleApi.Vision.V1.Model.ProductSearchParams)
field(:webDetectionParams, as: GoogleApi.Vision.V1.Model.WebDetectionParams)
end
defimpl Poison.Decoder, for: GoogleApi.Vision.V1.Model.ImageContext do
def decode(value, options) do
GoogleApi.Vision.V1.Model.ImageContext.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Vision.V1.Model.ImageContext do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end