Skip to content

Commit

Permalink
tesseract 2.2 issue shouldCancelImageRecognitionForTesseract solved
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele authored and Daniele committed Feb 25, 2014
1 parent 549d083 commit bd4ef3c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Binary file modified Products/TesseractOCR.framework/Versions/A/Resources/Info.plist
Binary file not shown.
Binary file modified Products/TesseractOCR.framework/Versions/A/TesseractOCR
Binary file not shown.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Tesseract OCR iOS 2.1 (iOS7 ready & arm64 ready)
Tesseract OCR iOS 2.2 (iOS7 ready & arm64 ready)
=================

**Tesseract OCR iOS is a Framework for iOS5+.**
Expand Down Expand Up @@ -94,6 +94,8 @@ For instance, use tessedit_char_whitelist to restrict characters to a specific s
<br/>
Updates in this version
=================
- The 2.2 is like 2.1... but shouldCancelImageRecognitionForTesseract works again! Thank you to Timo Formella!

- Template project updated. Now with camera support.

- New release **2.1**
Expand Down
2 changes: 1 addition & 1 deletion TesseractOCR/Tesseract.mm
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ - (void)clear {

- (BOOL)recognize {

int returnCode = _tesseract->Recognize(NULL);
int returnCode = _tesseract->Recognize(_monitor);
return (returnCode == 0) ? YES : NO;
}

Expand Down
4 changes: 2 additions & 2 deletions TesseractOCR/TesseractOCR-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.1</string>
<string>2.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>2.1</string>
<string>2.2</string>
<key>CFPlugInDynamicRegisterFunction</key>
<string></string>
<key>CFPlugInDynamicRegistration</key>
Expand Down

0 comments on commit bd4ef3c

Please sign in to comment.