Swiftpack.co - GrigoryShushakov/versdk as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by GrigoryShushakov.
GrigoryShushakov/versdk 0.0.10
VerSDK
⭐️ 1
🕓 2 years ago
iOS
.package(url: "https://github.com/GrigoryShushakov/versdk.git", from: "0.0.10")

Swift 5.1

VerSDK

VerSDK is a Framework helped with recognition text in documents and suitable take verification selfie. The SDK calls the user interface for photography and returns the result of text recognition or face detection.

Need Help?

Please, use GitHub Issues for reporting a bug or requesting a new feature.

Examples

Sample App

Installation

VerSDK can be installed with Swift Package Manager.

Swift Package Manager (Xcode 12 or higher)

  1. In Xcode, open your project and navigate to FileSwift PackagesAdd Package Dependency...
  2. Paste the repository URL (https://github.com/GrigoryShushakov/versdk.git) and click Next.
  3. For Rules, select Version (Up to Next Major) and click Next.
  4. Click Finish.

Adding Package Dependencies to Your App

Usage

  1. For text recognition please call textRecognition sdk method in your application. Method returns array of recognized strings or Error with localized description.
VerSDK.shared.textRecognition { result in
    switch result {
    case .success(let prediction):
        // Text recognition result - [String]
    case .failure(let error):
        showError(error)
    }
}
  1. For face detection please call faceDetection sdk method in your application. Method returns UIImage or Error with localized description.
VerSDK.shared.faceDetection() { result in
    switch result {
    case .success(let image):
        // Face detection image - UIImage
    case .failure(let error):
        showError(error)
    }
}

Adding permissions

VerSDK requires camera permissions for capturing photos. Your application is responsible to describe the reason why camera is used. You must add NSCameraUsageDescription value to info.plist of your application with the explanation of the usage.

Requirements

  • iOS 13.0+
  • Swift 5.1+ (Library is written in Swift 5.3)

Author

Grigory Shushakov

License

VerSDK is available under the MIT license. See the LICENSE file for more info.

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics