MBIDetectionStatus

enum MBIDetectionStatus {}

Status of the object detection in Microblink SDK

  • Object was successfuly detected.

    Declaration

    Objective-C

    MBIDetectionStatusSuccess = 1 << 0
  • Object was not detected

    Declaration

    Objective-C

    MBIDetectionStatusFail = 1 << 1
  • Object was successfully detected, but the camera was too far above the object for processing

    Declaration

    Objective-C

    MBIDetectionStatusCameraTooHigh = 1 << 2
  • Object was successfully detected, but the perspective angle of camera is too high

    Declaration

    Objective-C

    MBIDetectionStatusCameraAtAngle = 1 << 3
  • Object was successfully detected, but the object is rotated and not aligned to the camera edges

    Declaration

    Objective-C

    MBIDetectionStatusCameraRotated = 1 << 4
  • QR code was successfully detected

    Declaration

    Objective-C

    MBIDetectionStatusQRSuccess = 1 << 6
  • PDF417 barcode was successfully detected

    Declaration

    Objective-C

    MBIDetectionStatusPdf417Success = 1 << 7
  • Object was successfully detected using a fallback algorithm

    Declaration

    Objective-C

    MBIDetectionStatusFallbackSuccess = 1 << 8
  • Object was detected, but is only partially visible on screen

    Declaration

    Objective-C

    MBIDetectionStatusPartialForm = 1 << 9
  • Object was successfully detected, but the camera is too near to the object for processing

    Declaration

    Objective-C

    MBIDetectionStatusCameraTooNear = 1 << 10
  • Document detected, but document is too close to the edge of the frame

    Declaration

    Objective-C

    MBIDetectionStatusDocumentTooCloseToEdge = 1 << 11