motion-ocr 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +10 -0
  4. data/LICENSE +28 -0
  5. data/README.md +22 -0
  6. data/Rakefile +17 -0
  7. data/app/app_delegate.rb +2 -0
  8. data/lib/motion-ocr.rb +26 -0
  9. data/lib/motion-ocr/version.rb +3 -0
  10. data/motion-ocr.gemspec +20 -0
  11. data/resources/tessdata/configs/nodict +3 -0
  12. data/resources/tessdata/eng.traineddata +0 -0
  13. data/spec/motion_ocr_spec.rb +23 -0
  14. data/spec/support/phototest.gif +0 -0
  15. data/vendor/MotionOCR/MotionOCR.bridgesupport +14722 -0
  16. data/vendor/MotionOCR/MotionOCR.xcodeproj/project.pbxproj +390 -0
  17. data/vendor/MotionOCR/MotionOCR.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  18. data/vendor/MotionOCR/MotionOCR.xcodeproj/project.xcworkspace/xcuserdata/fer.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  19. data/vendor/MotionOCR/MotionOCR.xcodeproj/xcuserdata/fer.xcuserdatad/xcschemes/MotionOCR.xcscheme +59 -0
  20. data/vendor/MotionOCR/MotionOCR.xcodeproj/xcuserdata/fer.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
  21. data/vendor/MotionOCR/MotionOCR/MotionOCR-Prefix.pch +7 -0
  22. data/vendor/MotionOCR/MotionOCR/MotionOCR.h +22 -0
  23. data/vendor/MotionOCR/MotionOCR/MotionOCR.mm +89 -0
  24. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/allheaders.h +32 -0
  25. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/alltypes.h +49 -0
  26. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/array.h +125 -0
  27. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/arrayaccess.h +194 -0
  28. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/bbuffer.h +46 -0
  29. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/bmf.h +51 -0
  30. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/bmp.h +74 -0
  31. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/ccbord.h +103 -0
  32. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/dewarp.h +57 -0
  33. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/endianness.h +11 -0
  34. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/environ.h +281 -0
  35. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/freetype.h +23 -0
  36. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/gplot.h +77 -0
  37. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/heap.h +73 -0
  38. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/imageio.h +153 -0
  39. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/jbclass.h +122 -0
  40. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/leptprotos.h +2058 -0
  41. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/leptwin.h +34 -0
  42. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/list.h +76 -0
  43. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/morph.h +218 -0
  44. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/pix.h +945 -0
  45. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/ptra.h +80 -0
  46. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/queue.h +63 -0
  47. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/readbarcode.h +220 -0
  48. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/regutils.h +122 -0
  49. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/stack.h +55 -0
  50. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/sudoku.h +62 -0
  51. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/leptonica/watershed.h +52 -0
  52. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/apitypes.h +31 -0
  53. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/baseapi.h +664 -0
  54. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/errcode.h +104 -0
  55. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/genericvector.h +763 -0
  56. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/helpers.h +139 -0
  57. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/host.h +180 -0
  58. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/ndminx.h +31 -0
  59. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/ocrclass.h +335 -0
  60. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/platform.h +48 -0
  61. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/publictypes.h +202 -0
  62. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/tesscallback.h +1238 -0
  63. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/thresholder.h +170 -0
  64. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/include/tesseract/unichar.h +85 -0
  65. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/lib/liblept.a +0 -0
  66. data/vendor/MotionOCR/MotionOCR/build_dependencies/dependencies/lib/libtesseract_all.a +0 -0
  67. metadata +113 -0
@@ -0,0 +1,390 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ C15B347F16979EDE00FB5EFE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C15B347E16979EDE00FB5EFE /* Foundation.framework */; };
11
+ C15B348416979EDE00FB5EFE /* MotionOCR.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = C15B348316979EDE00FB5EFE /* MotionOCR.h */; };
12
+ C15B348616979EDE00FB5EFE /* MotionOCR.mm in Sources */ = {isa = PBXBuildFile; fileRef = C15B348516979EDE00FB5EFE /* MotionOCR.mm */; };
13
+ C15B34C81697A02400FB5EFE /* liblept.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C15B34C61697A02400FB5EFE /* liblept.a */; };
14
+ C15B34C91697A02400FB5EFE /* libtesseract_all.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C15B34C71697A02400FB5EFE /* libtesseract_all.a */; };
15
+ C15B34CC1697A04700FB5EFE /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C15B34CA1697A04700FB5EFE /* AVFoundation.framework */; };
16
+ C15B34CD1697A04700FB5EFE /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C15B34CB1697A04700FB5EFE /* CoreGraphics.framework */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXCopyFilesBuildPhase section */
20
+ C15B347916979EDE00FB5EFE /* CopyFiles */ = {
21
+ isa = PBXCopyFilesBuildPhase;
22
+ buildActionMask = 2147483647;
23
+ dstPath = "include/${PRODUCT_NAME}";
24
+ dstSubfolderSpec = 16;
25
+ files = (
26
+ C15B348416979EDE00FB5EFE /* MotionOCR.h in CopyFiles */,
27
+ );
28
+ runOnlyForDeploymentPostprocessing = 0;
29
+ };
30
+ /* End PBXCopyFilesBuildPhase section */
31
+
32
+ /* Begin PBXFileReference section */
33
+ C15B347B16979EDE00FB5EFE /* libMotionOCR.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libMotionOCR.a; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ C15B347E16979EDE00FB5EFE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
35
+ C15B348216979EDE00FB5EFE /* MotionOCR-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MotionOCR-Prefix.pch"; sourceTree = "<group>"; };
36
+ C15B348316979EDE00FB5EFE /* MotionOCR.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MotionOCR.h; sourceTree = "<group>"; };
37
+ C15B348516979EDE00FB5EFE /* MotionOCR.mm */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; path = MotionOCR.mm; sourceTree = "<group>"; };
38
+ C15B349B1697A02400FB5EFE /* allheaders.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = allheaders.h; sourceTree = "<group>"; };
39
+ C15B349C1697A02400FB5EFE /* alltypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = alltypes.h; sourceTree = "<group>"; };
40
+ C15B349D1697A02400FB5EFE /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = array.h; sourceTree = "<group>"; };
41
+ C15B349E1697A02400FB5EFE /* arrayaccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = arrayaccess.h; sourceTree = "<group>"; };
42
+ C15B349F1697A02400FB5EFE /* bbuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bbuffer.h; sourceTree = "<group>"; };
43
+ C15B34A01697A02400FB5EFE /* bmf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bmf.h; sourceTree = "<group>"; };
44
+ C15B34A11697A02400FB5EFE /* bmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bmp.h; sourceTree = "<group>"; };
45
+ C15B34A21697A02400FB5EFE /* ccbord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ccbord.h; sourceTree = "<group>"; };
46
+ C15B34A31697A02400FB5EFE /* dewarp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dewarp.h; sourceTree = "<group>"; };
47
+ C15B34A41697A02400FB5EFE /* endianness.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = endianness.h; sourceTree = "<group>"; };
48
+ C15B34A51697A02400FB5EFE /* environ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = environ.h; sourceTree = "<group>"; };
49
+ C15B34A61697A02400FB5EFE /* freetype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = freetype.h; sourceTree = "<group>"; };
50
+ C15B34A71697A02400FB5EFE /* gplot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gplot.h; sourceTree = "<group>"; };
51
+ C15B34A81697A02400FB5EFE /* heap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = heap.h; sourceTree = "<group>"; };
52
+ C15B34A91697A02400FB5EFE /* imageio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = imageio.h; sourceTree = "<group>"; };
53
+ C15B34AA1697A02400FB5EFE /* jbclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = jbclass.h; sourceTree = "<group>"; };
54
+ C15B34AB1697A02400FB5EFE /* leptprotos.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = leptprotos.h; sourceTree = "<group>"; };
55
+ C15B34AC1697A02400FB5EFE /* leptwin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = leptwin.h; sourceTree = "<group>"; };
56
+ C15B34AD1697A02400FB5EFE /* list.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = "<group>"; };
57
+ C15B34AE1697A02400FB5EFE /* morph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = morph.h; sourceTree = "<group>"; };
58
+ C15B34AF1697A02400FB5EFE /* pix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pix.h; sourceTree = "<group>"; };
59
+ C15B34B01697A02400FB5EFE /* ptra.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ptra.h; sourceTree = "<group>"; };
60
+ C15B34B11697A02400FB5EFE /* queue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = queue.h; sourceTree = "<group>"; };
61
+ C15B34B21697A02400FB5EFE /* readbarcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = readbarcode.h; sourceTree = "<group>"; };
62
+ C15B34B31697A02400FB5EFE /* regutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regutils.h; sourceTree = "<group>"; };
63
+ C15B34B41697A02400FB5EFE /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
64
+ C15B34B51697A02400FB5EFE /* sudoku.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sudoku.h; sourceTree = "<group>"; };
65
+ C15B34B61697A02400FB5EFE /* watershed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = watershed.h; sourceTree = "<group>"; };
66
+ C15B34B81697A02400FB5EFE /* apitypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = apitypes.h; sourceTree = "<group>"; };
67
+ C15B34B91697A02400FB5EFE /* baseapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = baseapi.h; sourceTree = "<group>"; };
68
+ C15B34BA1697A02400FB5EFE /* errcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errcode.h; sourceTree = "<group>"; };
69
+ C15B34BB1697A02400FB5EFE /* genericvector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = genericvector.h; sourceTree = "<group>"; };
70
+ C15B34BC1697A02400FB5EFE /* helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = helpers.h; sourceTree = "<group>"; };
71
+ C15B34BD1697A02400FB5EFE /* host.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = host.h; sourceTree = "<group>"; };
72
+ C15B34BE1697A02400FB5EFE /* ndminx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ndminx.h; sourceTree = "<group>"; };
73
+ C15B34BF1697A02400FB5EFE /* ocrclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocrclass.h; sourceTree = "<group>"; };
74
+ C15B34C01697A02400FB5EFE /* platform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = platform.h; sourceTree = "<group>"; };
75
+ C15B34C11697A02400FB5EFE /* publictypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = publictypes.h; sourceTree = "<group>"; };
76
+ C15B34C21697A02400FB5EFE /* tesscallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tesscallback.h; sourceTree = "<group>"; };
77
+ C15B34C31697A02400FB5EFE /* thresholder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = thresholder.h; sourceTree = "<group>"; };
78
+ C15B34C41697A02400FB5EFE /* unichar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unichar.h; sourceTree = "<group>"; };
79
+ C15B34C61697A02400FB5EFE /* liblept.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = liblept.a; sourceTree = "<group>"; };
80
+ C15B34C71697A02400FB5EFE /* libtesseract_all.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libtesseract_all.a; sourceTree = "<group>"; };
81
+ C15B34CA1697A04700FB5EFE /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
82
+ C15B34CB1697A04700FB5EFE /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
83
+ /* End PBXFileReference section */
84
+
85
+ /* Begin PBXFrameworksBuildPhase section */
86
+ C15B347816979EDE00FB5EFE /* Frameworks */ = {
87
+ isa = PBXFrameworksBuildPhase;
88
+ buildActionMask = 2147483647;
89
+ files = (
90
+ C15B34CC1697A04700FB5EFE /* AVFoundation.framework in Frameworks */,
91
+ C15B34CD1697A04700FB5EFE /* CoreGraphics.framework in Frameworks */,
92
+ C15B347F16979EDE00FB5EFE /* Foundation.framework in Frameworks */,
93
+ C15B34C81697A02400FB5EFE /* liblept.a in Frameworks */,
94
+ C15B34C91697A02400FB5EFE /* libtesseract_all.a in Frameworks */,
95
+ );
96
+ runOnlyForDeploymentPostprocessing = 0;
97
+ };
98
+ /* End PBXFrameworksBuildPhase section */
99
+
100
+ /* Begin PBXGroup section */
101
+ C15B347016979EDE00FB5EFE = {
102
+ isa = PBXGroup;
103
+ children = (
104
+ C15B34CA1697A04700FB5EFE /* AVFoundation.framework */,
105
+ C15B34CB1697A04700FB5EFE /* CoreGraphics.framework */,
106
+ C15B348016979EDE00FB5EFE /* MotionOCR */,
107
+ C15B347D16979EDE00FB5EFE /* Frameworks */,
108
+ C15B347C16979EDE00FB5EFE /* Products */,
109
+ );
110
+ sourceTree = "<group>";
111
+ };
112
+ C15B347C16979EDE00FB5EFE /* Products */ = {
113
+ isa = PBXGroup;
114
+ children = (
115
+ C15B347B16979EDE00FB5EFE /* libMotionOCR.a */,
116
+ );
117
+ name = Products;
118
+ sourceTree = "<group>";
119
+ };
120
+ C15B347D16979EDE00FB5EFE /* Frameworks */ = {
121
+ isa = PBXGroup;
122
+ children = (
123
+ C15B347E16979EDE00FB5EFE /* Foundation.framework */,
124
+ );
125
+ name = Frameworks;
126
+ sourceTree = "<group>";
127
+ };
128
+ C15B348016979EDE00FB5EFE /* MotionOCR */ = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ C15B34981697A02400FB5EFE /* dependencies */,
132
+ C15B348316979EDE00FB5EFE /* MotionOCR.h */,
133
+ C15B348516979EDE00FB5EFE /* MotionOCR.mm */,
134
+ C15B348116979EDE00FB5EFE /* Supporting Files */,
135
+ );
136
+ path = MotionOCR;
137
+ sourceTree = "<group>";
138
+ };
139
+ C15B348116979EDE00FB5EFE /* Supporting Files */ = {
140
+ isa = PBXGroup;
141
+ children = (
142
+ C15B348216979EDE00FB5EFE /* MotionOCR-Prefix.pch */,
143
+ );
144
+ name = "Supporting Files";
145
+ sourceTree = "<group>";
146
+ };
147
+ C15B34981697A02400FB5EFE /* dependencies */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ C15B34991697A02400FB5EFE /* include */,
151
+ C15B34C51697A02400FB5EFE /* lib */,
152
+ );
153
+ name = dependencies;
154
+ path = build_dependencies/dependencies;
155
+ sourceTree = "<group>";
156
+ };
157
+ C15B34991697A02400FB5EFE /* include */ = {
158
+ isa = PBXGroup;
159
+ children = (
160
+ C15B349A1697A02400FB5EFE /* leptonica */,
161
+ C15B34B71697A02400FB5EFE /* tesseract */,
162
+ );
163
+ path = include;
164
+ sourceTree = "<group>";
165
+ };
166
+ C15B349A1697A02400FB5EFE /* leptonica */ = {
167
+ isa = PBXGroup;
168
+ children = (
169
+ C15B349B1697A02400FB5EFE /* allheaders.h */,
170
+ C15B349C1697A02400FB5EFE /* alltypes.h */,
171
+ C15B349D1697A02400FB5EFE /* array.h */,
172
+ C15B349E1697A02400FB5EFE /* arrayaccess.h */,
173
+ C15B349F1697A02400FB5EFE /* bbuffer.h */,
174
+ C15B34A01697A02400FB5EFE /* bmf.h */,
175
+ C15B34A11697A02400FB5EFE /* bmp.h */,
176
+ C15B34A21697A02400FB5EFE /* ccbord.h */,
177
+ C15B34A31697A02400FB5EFE /* dewarp.h */,
178
+ C15B34A41697A02400FB5EFE /* endianness.h */,
179
+ C15B34A51697A02400FB5EFE /* environ.h */,
180
+ C15B34A61697A02400FB5EFE /* freetype.h */,
181
+ C15B34A71697A02400FB5EFE /* gplot.h */,
182
+ C15B34A81697A02400FB5EFE /* heap.h */,
183
+ C15B34A91697A02400FB5EFE /* imageio.h */,
184
+ C15B34AA1697A02400FB5EFE /* jbclass.h */,
185
+ C15B34AB1697A02400FB5EFE /* leptprotos.h */,
186
+ C15B34AC1697A02400FB5EFE /* leptwin.h */,
187
+ C15B34AD1697A02400FB5EFE /* list.h */,
188
+ C15B34AE1697A02400FB5EFE /* morph.h */,
189
+ C15B34AF1697A02400FB5EFE /* pix.h */,
190
+ C15B34B01697A02400FB5EFE /* ptra.h */,
191
+ C15B34B11697A02400FB5EFE /* queue.h */,
192
+ C15B34B21697A02400FB5EFE /* readbarcode.h */,
193
+ C15B34B31697A02400FB5EFE /* regutils.h */,
194
+ C15B34B41697A02400FB5EFE /* stack.h */,
195
+ C15B34B51697A02400FB5EFE /* sudoku.h */,
196
+ C15B34B61697A02400FB5EFE /* watershed.h */,
197
+ );
198
+ path = leptonica;
199
+ sourceTree = "<group>";
200
+ };
201
+ C15B34B71697A02400FB5EFE /* tesseract */ = {
202
+ isa = PBXGroup;
203
+ children = (
204
+ C15B34B81697A02400FB5EFE /* apitypes.h */,
205
+ C15B34B91697A02400FB5EFE /* baseapi.h */,
206
+ C15B34BA1697A02400FB5EFE /* errcode.h */,
207
+ C15B34BB1697A02400FB5EFE /* genericvector.h */,
208
+ C15B34BC1697A02400FB5EFE /* helpers.h */,
209
+ C15B34BD1697A02400FB5EFE /* host.h */,
210
+ C15B34BE1697A02400FB5EFE /* ndminx.h */,
211
+ C15B34BF1697A02400FB5EFE /* ocrclass.h */,
212
+ C15B34C01697A02400FB5EFE /* platform.h */,
213
+ C15B34C11697A02400FB5EFE /* publictypes.h */,
214
+ C15B34C21697A02400FB5EFE /* tesscallback.h */,
215
+ C15B34C31697A02400FB5EFE /* thresholder.h */,
216
+ C15B34C41697A02400FB5EFE /* unichar.h */,
217
+ );
218
+ path = tesseract;
219
+ sourceTree = "<group>";
220
+ };
221
+ C15B34C51697A02400FB5EFE /* lib */ = {
222
+ isa = PBXGroup;
223
+ children = (
224
+ C15B34C61697A02400FB5EFE /* liblept.a */,
225
+ C15B34C71697A02400FB5EFE /* libtesseract_all.a */,
226
+ );
227
+ path = lib;
228
+ sourceTree = "<group>";
229
+ };
230
+ /* End PBXGroup section */
231
+
232
+ /* Begin PBXNativeTarget section */
233
+ C15B347A16979EDE00FB5EFE /* MotionOCR */ = {
234
+ isa = PBXNativeTarget;
235
+ buildConfigurationList = C15B348916979EDE00FB5EFE /* Build configuration list for PBXNativeTarget "MotionOCR" */;
236
+ buildPhases = (
237
+ C15B347716979EDE00FB5EFE /* Sources */,
238
+ C15B347816979EDE00FB5EFE /* Frameworks */,
239
+ C15B347916979EDE00FB5EFE /* CopyFiles */,
240
+ );
241
+ buildRules = (
242
+ );
243
+ dependencies = (
244
+ );
245
+ name = MotionOCR;
246
+ productName = MotionOCR;
247
+ productReference = C15B347B16979EDE00FB5EFE /* libMotionOCR.a */;
248
+ productType = "com.apple.product-type.library.static";
249
+ };
250
+ /* End PBXNativeTarget section */
251
+
252
+ /* Begin PBXProject section */
253
+ C15B347216979EDE00FB5EFE /* Project object */ = {
254
+ isa = PBXProject;
255
+ attributes = {
256
+ LastUpgradeCheck = 0450;
257
+ ORGANIZATIONNAME = com.ferdev;
258
+ };
259
+ buildConfigurationList = C15B347516979EDE00FB5EFE /* Build configuration list for PBXProject "MotionOCR" */;
260
+ compatibilityVersion = "Xcode 3.2";
261
+ developmentRegion = English;
262
+ hasScannedForEncodings = 0;
263
+ knownRegions = (
264
+ en,
265
+ );
266
+ mainGroup = C15B347016979EDE00FB5EFE;
267
+ productRefGroup = C15B347C16979EDE00FB5EFE /* Products */;
268
+ projectDirPath = "";
269
+ projectRoot = "";
270
+ targets = (
271
+ C15B347A16979EDE00FB5EFE /* MotionOCR */,
272
+ );
273
+ };
274
+ /* End PBXProject section */
275
+
276
+ /* Begin PBXSourcesBuildPhase section */
277
+ C15B347716979EDE00FB5EFE /* Sources */ = {
278
+ isa = PBXSourcesBuildPhase;
279
+ buildActionMask = 2147483647;
280
+ files = (
281
+ C15B348616979EDE00FB5EFE /* MotionOCR.mm in Sources */,
282
+ );
283
+ runOnlyForDeploymentPostprocessing = 0;
284
+ };
285
+ /* End PBXSourcesBuildPhase section */
286
+
287
+ /* Begin XCBuildConfiguration section */
288
+ C15B348716979EDE00FB5EFE /* Debug */ = {
289
+ isa = XCBuildConfiguration;
290
+ buildSettings = {
291
+ ALWAYS_SEARCH_USER_PATHS = NO;
292
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
293
+ CLANG_CXX_LIBRARY = "libc++";
294
+ CLANG_ENABLE_OBJC_ARC = YES;
295
+ CLANG_WARN_EMPTY_BODY = YES;
296
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
297
+ COPY_PHASE_STRIP = NO;
298
+ GCC_C_LANGUAGE_STANDARD = gnu99;
299
+ GCC_DYNAMIC_NO_PIC = NO;
300
+ GCC_OPTIMIZATION_LEVEL = 0;
301
+ GCC_PREPROCESSOR_DEFINITIONS = (
302
+ "DEBUG=1",
303
+ "$(inherited)",
304
+ );
305
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
306
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
307
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
308
+ GCC_WARN_UNUSED_VARIABLE = YES;
309
+ IPHONEOS_DEPLOYMENT_TARGET = 6.0;
310
+ ONLY_ACTIVE_ARCH = YES;
311
+ SDKROOT = iphoneos;
312
+ };
313
+ name = Debug;
314
+ };
315
+ C15B348816979EDE00FB5EFE /* Release */ = {
316
+ isa = XCBuildConfiguration;
317
+ buildSettings = {
318
+ ALWAYS_SEARCH_USER_PATHS = NO;
319
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
320
+ CLANG_CXX_LIBRARY = "libc++";
321
+ CLANG_ENABLE_OBJC_ARC = YES;
322
+ CLANG_WARN_EMPTY_BODY = YES;
323
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
324
+ COPY_PHASE_STRIP = YES;
325
+ GCC_C_LANGUAGE_STANDARD = gnu99;
326
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
327
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
328
+ GCC_WARN_UNUSED_VARIABLE = YES;
329
+ IPHONEOS_DEPLOYMENT_TARGET = 6.0;
330
+ SDKROOT = iphoneos;
331
+ VALIDATE_PRODUCT = YES;
332
+ };
333
+ name = Release;
334
+ };
335
+ C15B348A16979EDE00FB5EFE /* Debug */ = {
336
+ isa = XCBuildConfiguration;
337
+ buildSettings = {
338
+ DSTROOT = /tmp/MotionOCR.dst;
339
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
340
+ GCC_PREFIX_HEADER = "MotionOCR/MotionOCR-Prefix.pch";
341
+ LIBRARY_SEARCH_PATHS = (
342
+ "$(inherited)",
343
+ "\"$(SRCROOT)/MotionOCR/build_dependencies/dependencies/lib\"",
344
+ );
345
+ OTHER_LDFLAGS = "-ObjC";
346
+ PRODUCT_NAME = "$(TARGET_NAME)";
347
+ SKIP_INSTALL = YES;
348
+ };
349
+ name = Debug;
350
+ };
351
+ C15B348B16979EDE00FB5EFE /* Release */ = {
352
+ isa = XCBuildConfiguration;
353
+ buildSettings = {
354
+ DSTROOT = /tmp/MotionOCR.dst;
355
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
356
+ GCC_PREFIX_HEADER = "MotionOCR/MotionOCR-Prefix.pch";
357
+ LIBRARY_SEARCH_PATHS = (
358
+ "$(inherited)",
359
+ "\"$(SRCROOT)/MotionOCR/build_dependencies/dependencies/lib\"",
360
+ );
361
+ OTHER_LDFLAGS = "-ObjC";
362
+ PRODUCT_NAME = "$(TARGET_NAME)";
363
+ SKIP_INSTALL = YES;
364
+ };
365
+ name = Release;
366
+ };
367
+ /* End XCBuildConfiguration section */
368
+
369
+ /* Begin XCConfigurationList section */
370
+ C15B347516979EDE00FB5EFE /* Build configuration list for PBXProject "MotionOCR" */ = {
371
+ isa = XCConfigurationList;
372
+ buildConfigurations = (
373
+ C15B348716979EDE00FB5EFE /* Debug */,
374
+ C15B348816979EDE00FB5EFE /* Release */,
375
+ );
376
+ defaultConfigurationIsVisible = 0;
377
+ defaultConfigurationName = Release;
378
+ };
379
+ C15B348916979EDE00FB5EFE /* Build configuration list for PBXNativeTarget "MotionOCR" */ = {
380
+ isa = XCConfigurationList;
381
+ buildConfigurations = (
382
+ C15B348A16979EDE00FB5EFE /* Debug */,
383
+ C15B348B16979EDE00FB5EFE /* Release */,
384
+ );
385
+ defaultConfigurationIsVisible = 0;
386
+ };
387
+ /* End XCConfigurationList section */
388
+ };
389
+ rootObject = C15B347216979EDE00FB5EFE /* Project object */;
390
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:MotionOCR.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,59 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0450"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "C15B347A16979EDE00FB5EFE"
18
+ BuildableName = "libMotionOCR.a"
19
+ BlueprintName = "MotionOCR"
20
+ ReferencedContainer = "container:MotionOCR.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
27
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
28
+ shouldUseLaunchSchemeArgsEnv = "YES"
29
+ buildConfiguration = "Debug">
30
+ <Testables>
31
+ </Testables>
32
+ </TestAction>
33
+ <LaunchAction
34
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
35
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
36
+ launchStyle = "0"
37
+ useCustomWorkingDirectory = "NO"
38
+ buildConfiguration = "Debug"
39
+ ignoresPersistentStateOnLaunch = "NO"
40
+ debugDocumentVersioning = "YES"
41
+ allowLocationSimulation = "YES">
42
+ <AdditionalOptions>
43
+ </AdditionalOptions>
44
+ </LaunchAction>
45
+ <ProfileAction
46
+ shouldUseLaunchSchemeArgsEnv = "YES"
47
+ savedToolIdentifier = ""
48
+ useCustomWorkingDirectory = "NO"
49
+ buildConfiguration = "Release"
50
+ debugDocumentVersioning = "YES">
51
+ </ProfileAction>
52
+ <AnalyzeAction
53
+ buildConfiguration = "Debug">
54
+ </AnalyzeAction>
55
+ <ArchiveAction
56
+ buildConfiguration = "Release"
57
+ revealArchiveInOrganizer = "YES">
58
+ </ArchiveAction>
59
+ </Scheme>