FirebaseMLVision Framework Reference

FIRVisionDocumentTextWord


@interface FIRVisionDocumentTextWord : NSObject

A document text word recognized in an image that consists of an array of symbols.

  • String representation of the document text word that was recognized.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull text;
  • An array of symbols in the document text word.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<FIRVisionDocumentTextSymbol *> *_Nonnull symbols;
  • The rectangle that contains the document text word relative to the image in the default coordinate space.

    Declaration

    Objective-C

    @property (nonatomic, readonly) CGRect frame;
  • The confidence of the recognized document text word.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSNumber *_Nonnull confidence;
  • An array of recognized languages in the document text word. If no languages are recognized, the array is empty.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSArray<FIRVisionTextRecognizedLanguage *> *_Nonnull recognizedLanguages;
  • The recognized start or end of the document text word.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) FIRVisionTextRecognizedBreak *recognizedBreak;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;