-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetCVImage.patch
executable file
·176 lines (169 loc) · 5.15 KB
/
SetCVImage.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
Index: main_dummy.cpp
===================================================================
--- main_dummy.cpp (revision 100)
+++ main_dummy.cpp (working copy)
@@ -16,6 +16,7 @@
#endif
#include "allheaders.h"
#include "baseapi.h"
+#include "img.h"
#include "strngs.h"
#include "tprintf.h"
#include "tesseractmain.h"
@@ -23,6 +24,8 @@
#include "fmemopen.h"
#endif
+#include "main_dummy.h"
+
bool isLibLept() {
#if defined(HAVE_LIBLEPT)
@@ -138,7 +141,7 @@
fseek(fp, 0, SEEK_END);
int fileLen=ftell(fp);
fseek(fp, 0, SEEK_SET);
- printf("fileLen=%d\n",fileLen);
+ //printf("fileLen=%d\n",fileLen);
char *buffer;
//Allocate memory
buffer=(char *)malloc(fileLen+1);
@@ -151,7 +154,7 @@
int n;
n = fread(buffer,fileLen, 1, fp);
fclose(fp);
- printf("n=%d\n",n);
+ //printf("n=%d\n",n);
//dump_buffer(buffer,fileLen);
char* retStr;
retStr=ProcessPagesBuffer(buffer,fileLen, api);
@@ -160,6 +163,91 @@
return retStr;
}
+ /* from PyBLOB project
+ http://code.google.com/p/pyblobs/issues/attachmentText?id=2&aid=4459562154860045232&name=iplimage_t.h&token=ed989cead6fe486664a024d538bccc2b
+ */
+struct iplimage_t {
+ PyObject_HEAD
+ IplImage *a;
+ PyObject *data;
+ size_t offset;
+};
+
+static PyTypeObject iplimage_Type = {
+ PyObject_HEAD_INIT(&PyType_Type)
+ 0, /*size*/
+ "cv.iplimage", /*name*/
+ sizeof(iplimage_t), /*basicsize*/
+};
+static int is_none(PyObject *o)
+{
+ //printf("is_none: %d\n", Py_None == o);
+ return Py_None == o;
+}
-
+static int is_iplimage(PyObject *o)
+{
+ PyObject* to = PyObject_Type(o);
+ const char* tp_name = ((PyTypeObject*) to)->tp_name;
+ //printf("is_iplimage: %s, %d\n", tp_name, strcmp(tp_name, "cv.iplimage") == 0);
+ return strcmp(tp_name, "cv.iplimage") == 0;
+}
+
+/* convert_to_IplImage(): convert a PyObject* to IplImage*/
+/* Note: this has been copied verbatim from <opencv_root>/interfaces/python/cv.cpp */
+static int convert_to_IplImage(PyObject *o, IplImage **dst)
+{
+ iplimage_t *ipl = (iplimage_t*)o;
+ void *buffer;
+ Py_ssize_t buffer_len;
+
+ if (!is_iplimage(o)) {
+ return -1; //failmsg("Argument must be IplImage");
+ } else if (PyString_Check(ipl->data)) {
+ cvSetData(ipl->a, PyString_AsString(ipl->data) + ipl->offset, ipl->a->widthStep);
+ assert(cvGetErrStatus() == 0);
+ *dst = ipl->a;
+ return 1;
+ } else if (ipl->data && PyObject_AsWriteBuffer(ipl->data, &buffer, &buffer_len) == 0) {
+ cvSetData(ipl->a, (void*)((char*)buffer + ipl->offset), ipl->a->widthStep);
+ assert(cvGetErrStatus() == 0);
+ *dst = ipl->a;
+ return 1;
+ } else {
+ return -1;// failmsg("IplImage argument has no data");
+ }
+}
+
+void SetCvImage(PyObject* o, tesseract::TessBaseAPI* api)
+{
+ IplImage* img, *grayImg, *blackWhiteImg;
+ int res = convert_to_IplImage(o, &img);
+
+ //if succesfull
+ if ( res == 1 )
+ {
+ api->SetImage( (unsigned char*) img->imageData, img->width, img->height, img->nChannels, img->widthStep);
+ }
+
+}
+
+char* GetUTF8Text(tesseract::TessBaseAPI* api)
+{
+ bool failed = api->Recognize(NULL) < 0;
+ if ( failed) return 0;
+
+ STRING mstr = api->GetUTF8Text();
+ const char *tmpStr=mstr.string();
+ char *retStr = new char[strlen(tmpStr) + 1];
+ strcpy (retStr,tmpStr);
+ //printf("ok->%s",retStr);
+ return retStr;
+}
+
+bool SetVariable(const char* var, const char* value, tesseract::TessBaseAPI* api)
+{
+ bool res = api->SetVariable(var, value);
+ printf ("set variable %s result %d\n", var, res);
+ return res;
+}
\ No newline at end of file
Index: main_dummy.h
===================================================================
--- main_dummy.h (revision 100)
+++ main_dummy.h (working copy)
@@ -1,3 +1,6 @@
+#include <opencv/cv.h>
+#include <Python.h>
+
bool isLibTiff();
bool isLibLept();
char* ProcessPagesWrapper(const char* image,tesseract::TessBaseAPI* api);
@@ -5,3 +8,7 @@
char* ProcessPagesFileStream(const char* image,tesseract::TessBaseAPI* api);
char* ProcessPagesBuffer(char* buffer, int fileLen, tesseract::TessBaseAPI* api);
char* ProcessPagesRaw(const char* image,tesseract::TessBaseAPI* api);
+
+void SetCvImage(PyObject* o, tesseract::TessBaseAPI* api);
+bool SetVariable(const char* var, const char* value, tesseract::TessBaseAPI* api);
+char* GetUTF8Text(tesseract::TessBaseAPI* api);
\ No newline at end of file
Index: setup.py
===================================================================
--- setup.py (revision 100)
+++ setup.py (working copy)
@@ -59,15 +59,16 @@
tesseract_module = Extension('_tesseract',
sources=sources,
+ #extra_compile_args=["-DEBUG -O1 -pg "],
swig_opts=["-c++", "-I"+inclpath('tesseract'),
"-I"+incl,
"-I"+inclpath('leptonica')],
- extra_objects=extra_objects,
+ extra_objects=extra_objects,
include_dirs=['.',inclpath('tesseract'),
incl,
inclpath('leptonica')],
#libraries=['stdc++','tesseract_api','lept'],
- libraries=['tesseract_api'],
+ libraries=['tesseract','cv'],
extra_link_args=extra_link_args
)