SBSDKGenericDocumentRecognitionResult
@interface SBSDKGenericDocumentRecognitionResult : NSObject
The recognition result of the SBSDKGenericDocumentRecognizer.
-
The status of the recognition.
Declaration
Objective-C
@property (nonatomic, readonly) SBSDKGenericDocumentRecognitionStatus status;
Swift
var status: SBSDKGenericDocumentRecognitionStatus { get }
-
The recognized generic document, if recognized. Nil otherwise.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) SBSDKGenericDocument *document;
Swift
var document: SBSDKGenericDocument? { get }
-
The image of the document, if recognized. Nil otherwise.
Declaration
Objective-C
@property (nonatomic, readonly, nullable) UIImage *croppedImage;
Swift
var croppedImage: UIImage? { get }