amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.TextDetectionResult

Description

 
Synopsis

Documentation

data TextDetectionResult Source #

Information about text detected in a video. Incudes the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.

See: newTextDetectionResult smart constructor.

Constructors

TextDetectionResult' 

Fields

  • textDetection :: Maybe TextDetection

    Details about text detected in a video.

  • timestamp :: Maybe Integer

    The time, in milliseconds from the start of the video, that the text was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the text first appears.

Instances

Instances details
FromJSON TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

Generic TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

Associated Types

type Rep TextDetectionResult :: Type -> Type #

Read TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

Show TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

NFData TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

Methods

rnf :: TextDetectionResult -> () #

Eq TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

Hashable TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

type Rep TextDetectionResult Source # 
Instance details

Defined in Amazonka.Rekognition.Types.TextDetectionResult

type Rep TextDetectionResult = D1 ('MetaData "TextDetectionResult" "Amazonka.Rekognition.Types.TextDetectionResult" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "TextDetectionResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "textDetection") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TextDetection)) :*: S1 ('MetaSel ('Just "timestamp") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))

newTextDetectionResult :: TextDetectionResult Source #

Create a value of TextDetectionResult with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:textDetection:TextDetectionResult', textDetectionResult_textDetection - Details about text detected in a video.

$sel:timestamp:TextDetectionResult', textDetectionResult_timestamp - The time, in milliseconds from the start of the video, that the text was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the text first appears.

textDetectionResult_timestamp :: Lens' TextDetectionResult (Maybe Integer) Source #

The time, in milliseconds from the start of the video, that the text was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the text first appears.