SBSDKLicensePlateScannerResult

@interface SBSDKLicensePlateScannerResult : NSObject

A class describing the result of a license plate scan.

  • The country code that recognized on the license plate.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *countryCode;

    Swift

    var countryCode: String { get }
  • The actual license plate text that was recognized on the license plate.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *licensePlate;

    Swift

    var licensePlate: String { get }
  • The whole, raw text that was recognized on the license plate.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nonnull) NSString *rawString;

    Swift

    var rawString: String { get }
  • The text recognition confidence.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double confidence;

    Swift

    var confidence: Double { get }
  • Whether the validation of the scanned license plate was successful or not.

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isValidationSuccessful;

    Swift

    var isValidationSuccessful: Bool { get }
  • The image that was used for the detection.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) UIImage *croppedImage;

    Swift

    var croppedImage: UIImage? { get }