123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #import <CoreGraphics/CoreGraphics.h>
- #import <Foundation/Foundation.h>
- @class FIRVisionTextLine;
- @class FIRVisionTextRecognizedLanguage;
- NS_ASSUME_NONNULL_BEGIN
- NS_SWIFT_NAME(VisionTextBlock)
- @interface FIRVisionTextBlock : NSObject
- @property(nonatomic, readonly) NSString *text;
- @property(nonatomic, readonly) NSArray<FIRVisionTextLine *> *lines;
- @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
|