[][src]Struct gcp_client::google::cloud::vision::v1p2beta1::ImageContext

pub struct ImageContext {
    pub lat_long_rect: Option<LatLongRect>,
    pub language_hints: Vec<String>,
    pub crop_hints_params: Option<CropHintsParams>,
    pub web_detection_params: Option<WebDetectionParams>,
}

Image context and/or feature-specific parameters.

Fields

lat_long_rect: Option<LatLongRect>

Not used.

language_hints: Vec<String>

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.

crop_hints_params: Option<CropHintsParams>

Parameters for crop hints annotation request.

web_detection_params: Option<WebDetectionParams>

Parameters for web detection.

Trait Implementations

impl Clone for ImageContext[src]

impl Debug for ImageContext[src]

impl Default for ImageContext[src]

impl Message for ImageContext[src]

impl PartialEq<ImageContext> for ImageContext[src]

impl StructuralPartialEq for ImageContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]