123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <CoreGraphics/CoreGraphics.h>
- #import <Foundation/Foundation.h>
- @class FIRVisionTextElement;
- @class FIRVisionTextRecognizedLanguage;
- NS_ASSUME_NONNULL_BEGIN
- NS_SWIFT_NAME(VisionTextLine)
- @interface FIRVisionTextLine : NSObject
- @property(nonatomic, readonly) NSString *text;
- @property(nonatomic, readonly) NSArray<FIRVisionTextElement *> *elements;
- @property(nonatomic, readonly) CGRect frame;
- @property(nonatomic, readonly) NSArray<FIRVisionTextRecognizedLanguage *> *recognizedLanguages;
- @property(nonatomic, readonly, nullable) NSArray<NSValue *> *cornerPoints;
- @property(nonatomic, readonly, nullable) NSNumber *confidence;
- - (instancetype)init NS_UNAVAILABLE;
- @end
- NS_ASSUME_NONNULL_END
|