forked from UsingNet/nvjpeg-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nvjpeg-python.cpp
294 lines (239 loc) · 8.06 KB
/
nvjpeg-python.cpp
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
#include <stdio.h>
#include <malloc.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <Python.h>
#include <pythread.h>
#include <structmember.h>
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
#include <numpy/arrayobject.h>
#include "JpegCoder.hpp"
typedef struct
{
PyObject_HEAD
JpegCoder* m_handle;
}NvJpeg;
static PyMemberDef NvJpeg_DataMembers[] =
{
{(char*)"m_handle", T_OBJECT, offsetof(NvJpeg, m_handle), 0, (char*)"NvJpeg handle ptr"},
{NULL, 0, 0, 0, NULL}
};
int NvJpeg_init(PyObject *self, PyObject *args, PyObject *kwds) {
((NvJpeg*)self)->m_handle = new JpegCoder();
return 0;
}
static void NvJpeg_Destruct(PyObject* self)
{
delete (JpegCoder*)(((NvJpeg*)self)->m_handle);
Py_TYPE(self)->tp_free((PyObject*)self);
}
static PyObject* NvJpeg_Str(PyObject* Self)
{
return Py_BuildValue("s", "<nvjpeg-python.nvjpeg>");
}
static PyObject* NvJpeg_Repr(PyObject* Self)
{
return NvJpeg_Str(Self);
}
static PyObject* NvJpeg_decode(NvJpeg* Self, PyObject* Argvs)
{
JpegCoder* m_handle = (JpegCoder*)Self->m_handle;
Py_buffer pyBuf;
unsigned char* jpegData;
int len;
if(!PyArg_ParseTuple(Argvs, "y*", &pyBuf)){
PyErr_SetString(PyExc_ValueError, "Parse the argument FAILED! You should jpegData byte string!");
return NULL;
}
jpegData = (unsigned char*)pyBuf.buf;
len = pyBuf.len;
JpegCoderImage* img;
try{
m_handle->ensureThread(PyThread_get_thread_ident());
img = m_handle->decode((const unsigned char*)jpegData, len);
PyBuffer_Release(&pyBuf);
}catch(JpegCoderError e){
PyBuffer_Release(&pyBuf);
PyErr_Format(PyExc_ValueError, "%s, Code: %d", e.what(), e.code());
return NULL;
}
unsigned char* data = img->buffer();
npy_intp dims[3] = {(npy_intp)(img->height), (npy_intp)(img->width), 3};
PyObject* temp = PyArray_SimpleNewFromData(3, dims, NPY_UINT8, data);
PyArray_ENABLEFLAGS((PyArrayObject*) temp, NPY_ARRAY_OWNDATA);
delete(img);
return temp;
}
static PyObject* NvJpeg_encode(NvJpeg* Self, PyObject* Argvs)
{
PyArrayObject *vecin;
unsigned int quality = 70;
if (!PyArg_ParseTuple(Argvs, "O!|I", &PyArray_Type, &vecin, &quality)){
PyErr_SetString(PyExc_ValueError, "Parse the argument FAILED! You should pass BGR image numpy array!");
return NULL;
}
if (NULL == vecin){
Py_INCREF(Py_None);
return Py_None;
}
if (PyArray_NDIM(vecin) != 3){
PyErr_SetString(PyExc_ValueError, "Parse the argument FAILED! You should pass BGR image numpy array by height*width*channel!");
return NULL;
}
if(quality>100){
quality = 100;
}
JpegCoder* m_handle = (JpegCoder*)Self->m_handle;
PyObject* bytes = PyObject_CallMethod((PyObject*)vecin, "tobytes", NULL);
Py_buffer pyBuf;
unsigned char* buffer;
PyArg_Parse(bytes, "y*", &pyBuf);
buffer = (unsigned char*)pyBuf.buf;
auto img = new JpegCoderImage(PyArray_DIM(vecin, 1), PyArray_DIM(vecin, 0), 3, JPEGCODER_CSS_444);
img->fill(buffer);
PyBuffer_Release(&pyBuf);
Py_DECREF(bytes);
m_handle->ensureThread(PyThread_get_thread_ident());
auto data = m_handle->encode(img, quality);
PyObject* rtn = PyBytes_FromStringAndSize((const char*)data->data, data->size);
delete(data);
delete(img);
return rtn;
}
static PyObject* NvJpeg_read(NvJpeg* Self, PyObject* Argvs)
{
JpegCoder* m_handle = (JpegCoder*)Self->m_handle;
unsigned char* jpegFile;
if(!PyArg_ParseTuple(Argvs, "s", &jpegFile)){
PyErr_SetString(PyExc_ValueError, "Parse the argument FAILED! You should pass jpeg file path string!");
return NULL;
}
#ifdef _MSC_VER
FILE* fp;
fopen_s(&fp, (const char*)jpegFile, "rb");
#else
FILE* fp = fopen((const char*)jpegFile, "rb");
#endif
if (fp == NULL){
PyErr_Format(PyExc_IOError, "Cannot open file \"%s\"", jpegFile);
return NULL;
}
fseek(fp, 0, SEEK_END);
size_t dataLength = ftell(fp);
unsigned char* jpegData = (unsigned char*)malloc(dataLength);
if(jpegData == NULL){
fclose(fp);
PyErr_Format(PyExc_IOError, "Out of memeroy when read file \"%s\"", jpegFile);
return NULL;
}
fseek(fp, 0, SEEK_SET);
if(fread(jpegData, 1, dataLength, fp) != dataLength){
fclose(fp);
free(jpegData);
PyErr_Format(PyExc_IOError, "Read file \"%s\" with error", jpegFile);
return NULL;
}
fclose(fp);
m_handle->ensureThread(PyThread_get_thread_ident());
auto img = m_handle->decode((const unsigned char*)jpegData, dataLength);
free(jpegData);
unsigned char* data = img->buffer();
npy_intp dims[3] = {(npy_intp)(img->height), (npy_intp)(img->width), 3};
PyObject* temp = PyArray_SimpleNewFromData(3, dims, NPY_UINT8, data);
PyArray_ENABLEFLAGS((PyArrayObject*) temp, NPY_ARRAY_OWNDATA);
delete(img);
return temp;
}
static PyObject* NvJpeg_write(NvJpeg* Self, PyObject* Argvs)
{
unsigned char* jpegFile;
PyArrayObject *vecin;
unsigned int quality = 70;
if (!PyArg_ParseTuple(Argvs, "sO!|I", &jpegFile, &PyArray_Type, &vecin, &quality)){
PyErr_SetString(PyExc_ValueError, "Parse the argument FAILED! You should pass BGR image numpy array!");
return NULL;
}
#ifdef _MSC_VER
FILE* fp;
fopen_s(&fp, (const char*)jpegFile, "wb");
#else
FILE* fp = fopen((const char*)jpegFile, "wb");
#endif
if(fp == NULL){
PyErr_Format(PyExc_IOError, "Cannot open file \"%s\"", jpegFile);
return NULL;
}
PyObject* passAvgs = PyTuple_GetSlice(Argvs, 1, 2);
PyObject* encodeResponse = NvJpeg_encode(Self, passAvgs);
Py_DECREF(passAvgs);
if(encodeResponse == NULL){
fclose(fp);
return NULL;
}
char* jpegData;
Py_ssize_t jpegDataSize;
PyBytes_AsStringAndSize(encodeResponse, &jpegData, &jpegDataSize);
ssize_t write_size = fwrite(jpegData, 1, jpegDataSize, fp);
if(write_size != jpegDataSize){
PyErr_Format(PyExc_IOError, "Write file \"%s\" with error", jpegFile);
}
Py_DECREF(encodeResponse);
fclose(fp);
return Py_BuildValue("l", (long)jpegDataSize);
}
static PyMethodDef NvJpeg_MethodMembers[] =
{
{"encode", (PyCFunction)NvJpeg_encode, METH_VARARGS, "encode jpge"},
{"decode", (PyCFunction)NvJpeg_decode, METH_VARARGS, "decode jpeg"},
{"read", (PyCFunction)NvJpeg_read, METH_VARARGS, "read jpeg file and decode"},
{"write", (PyCFunction)NvJpeg_write, METH_VARARGS, "encode and write jpeg file"},
{NULL, NULL, 0, NULL}
};
static PyTypeObject NvJpeg_ClassInfo =
{
PyVarObject_HEAD_INIT(NULL, 0)
"nvjpeg.NvJpeg",
sizeof(NvJpeg),
0
};
void NvJpeg_module_destroy(void *_){
JpegCoder::cleanUpEnv();
}
static PyModuleDef ModuleInfo =
{
PyModuleDef_HEAD_INIT,
"NvJpeg Module",
"NvJpeg by Nvjpeg",
-1,
NULL, NULL, NULL, NULL,
NvJpeg_module_destroy
};
PyMODINIT_FUNC
PyInit_nvjpeg(void) {
PyObject * pReturn = NULL;
NvJpeg_ClassInfo.tp_dealloc = NvJpeg_Destruct;
NvJpeg_ClassInfo.tp_repr = NvJpeg_Repr;
NvJpeg_ClassInfo.tp_str = NvJpeg_Str;
NvJpeg_ClassInfo.tp_flags = Py_TPFLAGS_DEFAULT;
NvJpeg_ClassInfo.tp_doc = "NvJpeg Python Objects---Extensioned by nvjpeg";
NvJpeg_ClassInfo.tp_weaklistoffset = 0;
NvJpeg_ClassInfo.tp_methods = NvJpeg_MethodMembers;
NvJpeg_ClassInfo.tp_members = NvJpeg_DataMembers;
NvJpeg_ClassInfo.tp_dictoffset = 0;
NvJpeg_ClassInfo.tp_init = NvJpeg_init;
NvJpeg_ClassInfo.tp_new = PyType_GenericNew;
if(PyType_Ready(&NvJpeg_ClassInfo) < 0)
return NULL;
pReturn = PyModule_Create(&ModuleInfo);
if(pReturn == NULL)
return NULL;
Py_INCREF(&ModuleInfo);
Py_INCREF(&NvJpeg_ClassInfo);
if (PyModule_AddObject(pReturn, "NvJpeg", (PyObject*)&NvJpeg_ClassInfo) < 0) {
Py_DECREF(&NvJpeg_ClassInfo);
Py_DECREF(pReturn);
return NULL;
}
import_array();
return pReturn;
}