MBDetectionStatus
enum MBDetectionStatus {}
Status of the object detection in Microblink SDK
-
Object was successfuly detected.
Declaration
Objective-C
MBDetectionStatusSuccess = 1 << 0
-
Object was not detected
Declaration
Objective-C
MBDetectionStatusFail = 1 << 1
-
Object was successfully detected, but the camera was too far above the object for processing
Declaration
Objective-C
MBDetectionStatusCameraTooHigh = 1 << 2
-
Object was successfully detected, but the perspective angle of camera is too high
Declaration
Objective-C
MBDetectionStatusCameraAtAngle = 1 << 3
-
Object was successfully detected, but the object is rotated and not aligned to the camera edges
Declaration
Objective-C
MBDetectionStatusCameraRotated = 1 << 4
-
QR code was successfully detected
Declaration
Objective-C
MBDetectionStatusQRSuccess = 1 << 6
-
PDF417 barcode was successfully detected
Declaration
Objective-C
MBDetectionStatusPdf417Success = 1 << 7
-
Object was successfully detected using a fallback algorithm
Declaration
Objective-C
MBDetectionStatusFallbackSuccess = 1 << 8
-
Object was detected, but is only partially visible on screen
Declaration
Objective-C
MBDetectionStatusPartialForm = 1 << 9
-
Object was successfully detected, but the camera is too near to the object for processing
Declaration
Objective-C
MBDetectionStatusCameraTooNear = 1 << 10