SwiftOCR icon indicating copy to clipboard operation
SwiftOCR copied to clipboard

Fast and simple OCR library written in Swift

Results 86 SwiftOCR issues
Sort by recently updated
recently updated
newest added

What I did: 1.) Put `github "garnele007/SwiftOCR" "HEAD"` into `Cartfile` 2.) `carthage update` What happens: ``` *** Building scheme "SwiftOCR Mac" in SwiftOCR.xcodeproj *** Building scheme "SwiftOCR" in SwiftOCR.xcodeproj Build...

I cannot build SwiftOCR in Xcode 10.1 for the following Target: - Swift 4.2 - iOS 12.1 It is a fully clear project with SwiftOCR as the one and only...

I changed the training characters to include . because I am reading an image with numbers like "2.5" After training the system does a fantastic job of recognizing all numbers...

Hello, The main readme of this project makes this statement : > Here is an example image. SwiftOCR has no problem recognizing it. If you try to recognize the same...

I'm not getting any output string. My code is below ``` @IBAction func takePhoto(_ sender: Any) { imagePicker = UIImagePickerController() imagePicker.delegate = self imagePicker.sourceType = .camera present(imagePicker, animated: true, completion:...

Hello, If I use SwiftOCR, can it detect any language text or can it detect just english language text ? Thanks

We get crashes in the FFNN functions from memory errors from this dispatching on a concurrent queue. There is a simple fix here: https://github.com/langford/SwiftOCR/commit/890eeae498f7dea177efbf1ca5c890ffd46393cc That repo however is on a...

I have successfully integrated the project by following this https://github.com/garnele007/SwiftOCR/issues/25 I tried this image ![test 2](https://cloud.githubusercontent.com/assets/3624363/18312261/dd83f5aa-7519-11e6-9f24-2da36f68177b.png) But unfortunately getting an empty string. What could be the reason?

AS I am trying to make a server side SwiftOCR when I convert the image data into image it returns the Exact image but When I'm trying to parse the...

Hi. I've updated the recognizableCharacters variable to my new training data, e.g.: recognizableCharacters = "ABCD123˜)(-" But print(recognizableCharacters.count) is always the original 36 characters. So, after change recognizableCharacters, what is the...