SwiftCamScanner icon indicating copy to clipboard operation
SwiftCamScanner copied to clipboard

A pod written in swift that lets you scan and crop documents. It uses edge detection and perspective transformation with OpenCV.

SwiftCamScanner

Overview

Demo GIF

Requirements

Minimum iOS Version: 8.0

Installation

CocoaPods

SwiftCamScanner is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'SwiftCamScanner'

Manual

For manual installation, drag and drop the files in SwiftCamScanner/Classes into your project.

Usage

Storyboard:

To setup the cropping area, add a UIView to your storyboard and assign constraints. Set its class to 'CropView' and module to 'SwiftCamScanner'

ViewController:

import SwiftCamScanner
@IBOutlet weak var cropView: CropView!
 cropView.setUpImage(image: imageName)
 cropView.cropAndTransform{(croppedImage) in
   //Use the cropped Image
 }

Example

An example project is included with this repo. To run the example project, clone the repo, and run pod install from the Example directory.

Author

Srinija Ammapalli

License

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