gitextract_9uolaib_/ ├── .gitignore ├── Classes/ │ ├── OCRAppDelegate.h │ ├── OCRAppDelegate.m │ ├── OCRDisplayViewController.h │ ├── OCRDisplayViewController.mm │ ├── ZoomableImage.h │ └── ZoomableImage.m ├── MainWindow.xib ├── OCR-Info.plist ├── OCR.xcodeproj/ │ ├── project.pbxproj │ └── rcarlsen.perspectivev3 ├── OCRDisplayViewController.xib ├── OCR_Prefix.pch ├── UIImage-categories/ │ ├── UIImage+Alpha.h │ ├── UIImage+Alpha.m │ ├── UIImage+Resize.h │ ├── UIImage+Resize.m │ ├── UIImage+RoundedCorner.h │ └── UIImage+RoundedCorner.m ├── dev/ │ └── TessIcon.pxm ├── main.m ├── readme.txt ├── tessdata/ │ ├── Makefile.am │ ├── Makefile.in │ ├── configs/ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── api_config │ │ ├── box.train │ │ ├── box.train.stderr │ │ ├── inter │ │ ├── kannada │ │ ├── makebox │ │ └── unlv │ ├── confsets │ ├── deu.DangAmbigs │ ├── deu.freq-dawg │ ├── deu.inttemp │ ├── deu.normproto │ ├── deu.pffmtable │ ├── deu.unicharset │ ├── deu.user-words │ ├── deu.word-dawg │ ├── eng.DangAmbigs │ ├── eng.freq-dawg │ ├── eng.inttemp │ ├── eng.normproto │ ├── eng.pffmtable │ ├── eng.unicharset │ ├── eng.user-words │ ├── eng.word-dawg │ ├── fra.DangAmbigs │ ├── fra.freq-dawg │ ├── fra.inttemp │ ├── fra.normproto │ ├── fra.pffmtable │ ├── fra.unicharset │ ├── fra.user-words │ ├── fra.word-dawg │ ├── ita.DangAmbigs │ ├── ita.freq-dawg │ ├── ita.inttemp │ ├── ita.normproto │ ├── ita.pffmtable │ ├── ita.unicharset │ ├── ita.user-words │ ├── ita.word-dawg │ ├── makedummies │ ├── nld.DangAmbigs │ ├── nld.freq-dawg │ ├── nld.inttemp │ ├── nld.normproto │ ├── nld.pffmtable │ ├── nld.unicharset │ ├── nld.user-words │ ├── nld.word-dawg │ ├── spa.DangAmbigs │ ├── spa.freq-dawg │ ├── spa.inttemp │ ├── spa.normproto │ ├── spa.pffmtable │ ├── spa.unicharset │ ├── spa.user-words │ ├── spa.word-dawg │ └── tessconfigs/ │ ├── Makefile.am │ ├── Makefile.in │ ├── batch │ ├── batch.nochop │ ├── matdemo │ ├── msdemo │ ├── nobatch │ └── segdemo └── tessdata-svn/ ├── eng.DangAmbigs ├── eng.freq-dawg ├── eng.inttemp ├── eng.normproto ├── eng.pffmtable ├── eng.traineddata ├── eng.unicharset ├── eng.user-words └── eng.word-dawg