Struct aws_sdk_rekognition::model::TextDetection
source · [−]#[non_exhaustive]pub struct TextDetection {
pub detected_text: Option<String>,
pub type: Option<TextTypes>,
pub id: Option<i32>,
pub parent_id: Option<i32>,
pub confidence: Option<f32>,
pub geometry: Option<Geometry>,
}Expand description
Information about a word or line of text detected by DetectText.
The DetectedText field contains the text that Amazon Rekognition detected in the image.
Every word and line has an identifier (Id). Each word belongs to a line and has a parent identifier (ParentId) that identifies the line of text in which the word appears. The word Id is also an index for the word within a line of words.
For more information, see Detecting Text in the Amazon Rekognition Developer Guide.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.detected_text: Option<String>The word or line of text recognized by Amazon Rekognition.
type: Option<TextTypes>The type of text that was detected.
id: Option<i32>The identifier for the detected text. The identifier is only unique for a single call to DetectText.
parent_id: Option<i32>The Parent identifier for the detected text identified by the value of ID. If the type of detected text is LINE, the value of ParentId is Null.
confidence: Option<f32>The confidence that Amazon Rekognition has in the accuracy of the detected text and the accuracy of the geometry points around the detected text.
geometry: Option<Geometry>The location of the detected text on the image. Includes an axis aligned coarse bounding box surrounding the text and a finer grain polygon for more accurate spatial information.
Implementations
sourceimpl TextDetection
impl TextDetection
sourcepub fn detected_text(&self) -> Option<&str>
pub fn detected_text(&self) -> Option<&str>
The word or line of text recognized by Amazon Rekognition.
sourcepub fn id(&self) -> Option<i32>
pub fn id(&self) -> Option<i32>
The identifier for the detected text. The identifier is only unique for a single call to DetectText.
sourcepub fn parent_id(&self) -> Option<i32>
pub fn parent_id(&self) -> Option<i32>
The Parent identifier for the detected text identified by the value of ID. If the type of detected text is LINE, the value of ParentId is Null.
sourcepub fn confidence(&self) -> Option<f32>
pub fn confidence(&self) -> Option<f32>
The confidence that Amazon Rekognition has in the accuracy of the detected text and the accuracy of the geometry points around the detected text.
sourceimpl TextDetection
impl TextDetection
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TextDetection
Trait Implementations
sourceimpl Clone for TextDetection
impl Clone for TextDetection
sourcefn clone(&self) -> TextDetection
fn clone(&self) -> TextDetection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TextDetection
impl Debug for TextDetection
sourceimpl PartialEq<TextDetection> for TextDetection
impl PartialEq<TextDetection> for TextDetection
sourcefn eq(&self, other: &TextDetection) -> bool
fn eq(&self, other: &TextDetection) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TextDetection) -> bool
fn ne(&self, other: &TextDetection) -> bool
This method tests for !=.
impl StructuralPartialEq for TextDetection
Auto Trait Implementations
impl RefUnwindSafe for TextDetection
impl Send for TextDetection
impl Sync for TextDetection
impl Unpin for TextDetection
impl UnwindSafe for TextDetection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more