cv2.cpp 46.0 KB
Newer Older
1 2
#if defined(_MSC_VER) && (_MSC_VER >= 1800)
// eliminating duplicated round() declaration
3
#define HAVE_ROUND 1
4 5
#endif

6 7 8
#include <Python.h>

#define MODULESTR "cv2"
9
#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
A
Andrey Kamaev 已提交
10
#include <numpy/ndarrayobject.h>
11

12
#include "pyopencv_generated_include.h"
13
#include "opencv2/core/types_c.h"
14

15 16
#include "opencv2/opencv_modules.hpp"

17 18
#include "pycompat.hpp"

19

20 21 22 23 24
static PyObject* opencv_error = 0;

static int failmsg(const char *fmt, ...)
{
    char str[1000];
25

26 27 28 29
    va_list ap;
    va_start(ap, fmt);
    vsnprintf(str, sizeof(str), fmt, ap);
    va_end(ap);
30

31 32 33 34
    PyErr_SetString(PyExc_TypeError, str);
    return 0;
}

35 36 37 38 39 40
struct ArgInfo
{
    const char * name;
    bool outputarg;
    // more fields may be added if necessary

41
    ArgInfo(const char * name_, bool outputarg_)
42 43 44 45 46 47 48
        : name(name_)
        , outputarg(outputarg_) {}

    // to match with older pyopencv_to function signature
    operator const char *() const { return name; }
};

49 50 51 52
class PyAllowThreads
{
public:
    PyAllowThreads() : _state(PyEval_SaveThread()) {}
53
    ~PyAllowThreads()
54 55 56 57 58 59 60
    {
        PyEval_RestoreThread(_state);
    }
private:
    PyThreadState* _state;
};

A
Alexander Mordvintsev 已提交
61 62 63 64
class PyEnsureGIL
{
public:
    PyEnsureGIL() : _state(PyGILState_Ensure()) {}
65
    ~PyEnsureGIL()
A
Alexander Mordvintsev 已提交
66 67 68 69 70 71 72
    {
        PyGILState_Release(_state);
    }
private:
    PyGILState_STATE _state;
};

73 74 75
#define ERRWRAP2(expr) \
try \
{ \
76
    PyAllowThreads allowThreads; \
77 78 79 80 81 82 83 84
    expr; \
} \
catch (const cv::Exception &e) \
{ \
    PyErr_SetString(opencv_error, e.what()); \
    return 0; \
}

V
Vadim Pisarevsky 已提交
85 86
using namespace cv;

87
typedef std::vector<uchar> vector_uchar;
A
abidrahmank 已提交
88
typedef std::vector<char> vector_char;
89 90 91 92 93
typedef std::vector<int> vector_int;
typedef std::vector<float> vector_float;
typedef std::vector<double> vector_double;
typedef std::vector<Point> vector_Point;
typedef std::vector<Point2f> vector_Point2f;
W
Wangyida 已提交
94
typedef std::vector<Point3f> vector_Point3f;
95 96 97 98 99 100
typedef std::vector<Vec2f> vector_Vec2f;
typedef std::vector<Vec3f> vector_Vec3f;
typedef std::vector<Vec4f> vector_Vec4f;
typedef std::vector<Vec6f> vector_Vec6f;
typedef std::vector<Vec4i> vector_Vec4i;
typedef std::vector<Rect> vector_Rect;
B
berak 已提交
101
typedef std::vector<Rect2d> vector_Rect2d;
102 103
typedef std::vector<KeyPoint> vector_KeyPoint;
typedef std::vector<Mat> vector_Mat;
104
typedef std::vector<UMat> vector_UMat;
105
typedef std::vector<DMatch> vector_DMatch;
106
typedef std::vector<String> vector_String;
107
typedef std::vector<Scalar> vector_Scalar;
A
abidrahmank 已提交
108 109

typedef std::vector<std::vector<char> > vector_vector_char;
110 111 112 113
typedef std::vector<std::vector<Point> > vector_vector_Point;
typedef std::vector<std::vector<Point2f> > vector_vector_Point2f;
typedef std::vector<std::vector<Point3f> > vector_vector_Point3f;
typedef std::vector<std::vector<DMatch> > vector_vector_DMatch;
114
typedef std::vector<std::vector<KeyPoint> > vector_vector_KeyPoint;
115

V
Vadim Pisarevsky 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128
static PyObject* failmsgp(const char *fmt, ...)
{
  char str[1000];

  va_list ap;
  va_start(ap, fmt);
  vsnprintf(str, sizeof(str), fmt, ap);
  va_end(ap);

  PyErr_SetString(PyExc_TypeError, str);
  return 0;
}

129 130 131
class NumpyAllocator : public MatAllocator
{
public:
132
    NumpyAllocator() { stdAllocator = Mat::getStdAllocator(); }
133
    ~NumpyAllocator() {}
134

135 136 137 138 139 140 141 142 143 144 145 146 147
    UMatData* allocate(PyObject* o, int dims, const int* sizes, int type, size_t* step) const
    {
        UMatData* u = new UMatData(this);
        u->data = u->origdata = (uchar*)PyArray_DATA((PyArrayObject*) o);
        npy_intp* _strides = PyArray_STRIDES((PyArrayObject*) o);
        for( int i = 0; i < dims - 1; i++ )
            step[i] = (size_t)_strides[i];
        step[dims-1] = CV_ELEM_SIZE(type);
        u->size = sizes[0]*step[0];
        u->userdata = o;
        return u;
    }

148
    UMatData* allocate(int dims0, const int* sizes, int type, void* data, size_t* step, int flags, UMatUsageFlags usageFlags) const
149
    {
150 151
        if( data != 0 )
        {
152
            // issue #6969: CV_Error(Error::StsAssert, "The data should normally be NULL!");
153
            // probably this is safe to do in such extreme case
154
            return stdAllocator->allocate(dims0, sizes, type, data, step, flags, usageFlags);
155
        }
A
Alexander Mordvintsev 已提交
156 157
        PyEnsureGIL gil;

158 159 160 161
        int depth = CV_MAT_DEPTH(type);
        int cn = CV_MAT_CN(type);
        const int f = (int)(sizeof(size_t)/8);
        int typenum = depth == CV_8U ? NPY_UBYTE : depth == CV_8S ? NPY_BYTE :
162 163 164 165
        depth == CV_16U ? NPY_USHORT : depth == CV_16S ? NPY_SHORT :
        depth == CV_32S ? NPY_INT : depth == CV_32F ? NPY_FLOAT :
        depth == CV_64F ? NPY_DOUBLE : f*NPY_ULONGLONG + (f^1)*NPY_UINT;
        int i, dims = dims0;
A
Andrey Kamaev 已提交
166
        cv::AutoBuffer<npy_intp> _sizes(dims + 1);
167 168 169
        for( i = 0; i < dims; i++ )
            _sizes[i] = sizes[i];
        if( cn > 1 )
A
Andrey Kamaev 已提交
170
            _sizes[dims++] = cn;
171 172
        PyObject* o = PyArray_SimpleNew(dims, _sizes, typenum);
        if(!o)
A
Andrey Kamaev 已提交
173
            CV_Error_(Error::StsError, ("The numpy array of typenum=%d, ndims=%d can not be created", typenum, dims));
174
        return allocate(o, dims0, sizes, type, step);
175
    }
176

177
    bool allocate(UMatData* u, int accessFlags, UMatUsageFlags usageFlags) const
178
    {
179
        return stdAllocator->allocate(u, accessFlags, usageFlags);
180 181 182 183
    }

    void deallocate(UMatData* u) const
    {
184 185 186 187 188 189
        if(!u)
            return;
        PyEnsureGIL gil;
        CV_Assert(u->urefcount >= 0);
        CV_Assert(u->refcount >= 0);
        if(u->refcount == 0)
190 191
        {
            PyObject* o = (PyObject*)u->userdata;
192
            Py_XDECREF(o);
193 194
            delete u;
        }
195
    }
196 197

    const MatAllocator* stdAllocator;
198 199 200
};

NumpyAllocator g_numpyAllocator;
201

202 203 204 205 206 207 208

template<typename T> static
bool pyopencv_to(PyObject* obj, T& p, const char* name = "<unknown>");

template<typename T> static
PyObject* pyopencv_from(const T& src);

209 210
enum { ARG_NONE = 0, ARG_MAT = 1, ARG_SCALAR = 2 };

211
// special case, when the convertor needs full ArgInfo structure
212
static bool pyopencv_to(PyObject* o, Mat& m, const ArgInfo info)
213
{
214
    bool allowND = true;
V
Vadim Pisarevsky 已提交
215 216 217 218 219 220
    if(!o || o == Py_None)
    {
        if( !m.data )
            m.allocator = &g_numpyAllocator;
        return true;
    }
221

222 223
    if( PyInt_Check(o) )
    {
224
        double v[] = {static_cast<double>(PyInt_AsLong((PyObject*)o)), 0., 0., 0.};
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
        m = Mat(4, 1, CV_64F, v).clone();
        return true;
    }
    if( PyFloat_Check(o) )
    {
        double v[] = {PyFloat_AsDouble((PyObject*)o), 0., 0., 0.};
        m = Mat(4, 1, CV_64F, v).clone();
        return true;
    }
    if( PyTuple_Check(o) )
    {
        int i, sz = (int)PyTuple_Size((PyObject*)o);
        m = Mat(sz, 1, CV_64F);
        for( i = 0; i < sz; i++ )
        {
            PyObject* oi = PyTuple_GET_ITEM(o, i);
            if( PyInt_Check(oi) )
                m.at<double>(i) = (double)PyInt_AsLong(oi);
            else if( PyFloat_Check(oi) )
                m.at<double>(i) = (double)PyFloat_AsDouble(oi);
            else
            {
                failmsg("%s is not a numerical tuple", info.name);
                m.release();
                return false;
            }
        }
        return true;
    }

V
Vadim Pisarevsky 已提交
255 256
    if( !PyArray_Check(o) )
    {
257
        failmsg("%s is not a numpy array, neither a scalar", info.name);
V
Vadim Pisarevsky 已提交
258
        return false;
259
    }
260

261 262
    PyArrayObject* oarr = (PyArrayObject*) o;

263
    bool needcopy = false, needcast = false;
264
    int typenum = PyArray_TYPE(oarr), new_typenum = typenum;
265 266 267 268
    int type = typenum == NPY_UBYTE ? CV_8U :
               typenum == NPY_BYTE ? CV_8S :
               typenum == NPY_USHORT ? CV_16U :
               typenum == NPY_SHORT ? CV_16S :
269
               typenum == NPY_INT ? CV_32S :
270
               typenum == NPY_INT32 ? CV_32S :
271 272
               typenum == NPY_FLOAT ? CV_32F :
               typenum == NPY_DOUBLE ? CV_64F : -1;
273

274 275
    if( type < 0 )
    {
B
boatx 已提交
276
        if( typenum == NPY_INT64 || typenum == NPY_UINT64 || typenum == NPY_LONG )
277 278
        {
            needcopy = needcast = true;
279
            new_typenum = NPY_INT;
280 281 282 283 284 285 286
            type = CV_32S;
        }
        else
        {
            failmsg("%s data type = %d is not supported", info.name, typenum);
            return false;
        }
287
    }
288

A
Andrey Kamaev 已提交
289 290 291 292
#ifndef CV_MAX_DIM
    const int CV_MAX_DIM = 32;
#endif

293
    int ndims = PyArray_NDIM(oarr);
294 295
    if(ndims >= CV_MAX_DIM)
    {
296
        failmsg("%s dimensionality (=%d) is too high", info.name, ndims);
V
Vadim Pisarevsky 已提交
297
        return false;
298
    }
299

300
    int size[CV_MAX_DIM+1];
A
Andrey Kamaev 已提交
301 302
    size_t step[CV_MAX_DIM+1];
    size_t elemsize = CV_ELEM_SIZE1(type);
303 304
    const npy_intp* _sizes = PyArray_DIMS(oarr);
    const npy_intp* _strides = PyArray_STRIDES(oarr);
305 306
    bool ismultichannel = ndims == 3 && _sizes[2] <= CV_CN_MAX;

307 308 309 310 311 312
    for( int i = ndims-1; i >= 0 && !needcopy; i-- )
    {
        // these checks handle cases of
        //  a) multi-dimensional (ndims > 2) arrays, as well as simpler 1- and 2-dimensional cases
        //  b) transposed arrays, where _strides[] elements go in non-descending order
        //  c) flipped arrays, where some of _strides[] elements are negative
313 314 315
        // the _sizes[i] > 1 is needed to avoid spurious copies when NPY_RELAXED_STRIDES is set
        if( (i == ndims-1 && _sizes[i] > 1 && (size_t)_strides[i] != elemsize) ||
            (i < ndims-1 && _sizes[i] > 1 && _strides[i] < _strides[i+1]) )
316 317
            needcopy = true;
    }
318

319 320 321
    if( ismultichannel && _strides[1] != (npy_intp)elemsize*_sizes[2] )
        needcopy = true;

322 323 324 325
    if (needcopy)
    {
        if (info.outputarg)
        {
326
            failmsg("Layout of the output array %s is incompatible with cv::Mat (step[ndims-1] != elemsize or step[1] != elemsize*nchannels)", info.name);
327 328
            return false;
        }
329 330 331 332 333 334 335 336 337 338 339

        if( needcast ) {
            o = PyArray_Cast(oarr, new_typenum);
            oarr = (PyArrayObject*) o;
        }
        else {
            oarr = PyArray_GETCONTIGUOUS(oarr);
            o = (PyObject*) oarr;
        }

        _strides = PyArray_STRIDES(oarr);
340
    }
341

342 343 344
    // Normalize strides in case NPY_RELAXED_STRIDES is set
    size_t default_step = elemsize;
    for ( int i = ndims - 1; i >= 0; --i )
345 346
    {
        size[i] = (int)_sizes[i];
347 348 349 350 351 352 353 354 355 356
        if ( size[i] > 1 )
        {
            step[i] = (size_t)_strides[i];
            default_step = step[i] * size[i];
        }
        else
        {
            step[i] = default_step;
            default_step *= size[i];
        }
357
    }
358

359 360
    // handle degenerate case
    if( ndims == 0) {
361 362 363 364
        size[ndims] = 1;
        step[ndims] = elemsize;
        ndims++;
    }
365

366
    if( ismultichannel )
V
Vadim Pisarevsky 已提交
367 368 369 370
    {
        ndims--;
        type |= CV_MAKETYPE(0, size[2]);
    }
371

V
Vadim Pisarevsky 已提交
372
    if( ndims > 2 && !allowND )
373
    {
374
        failmsg("%s has more than 2 dimensions", info.name);
V
Vadim Pisarevsky 已提交
375
        return false;
376
    }
377

378
    m = Mat(ndims, size, type, PyArray_DATA(oarr), step);
379
    m.u = g_numpyAllocator.allocate(o, ndims, size, type, step);
A
Alexander Alekhin 已提交
380
    m.addref();
381

382
    if( !needcopy )
383
    {
384 385
        Py_INCREF(o);
    }
386
    m.allocator = &g_numpyAllocator;
387

V
Vadim Pisarevsky 已提交
388
    return true;
389 390
}

391 392 393 394 395 396
template<>
bool pyopencv_to(PyObject* o, Mat& m, const char* name)
{
    return pyopencv_to(o, m, ArgInfo(name, 0));
}

397 398 399 400 401 402 403 404 405
template <typename T>
bool pyopencv_to(PyObject *o, Ptr<T>& p, const char *name)
{
    if (!o || o == Py_None)
        return true;
    p = makePtr<T>();
    return pyopencv_to(o, *p, name);
}

406 407
template<>
PyObject* pyopencv_from(const Mat& m)
408
{
409
    if( !m.data )
410
        Py_RETURN_NONE;
V
Vadim Pisarevsky 已提交
411
    Mat temp, *p = (Mat*)&m;
412
    if(!p->u || p->allocator != &g_numpyAllocator)
V
Vadim Pisarevsky 已提交
413
    {
V
Vadim Pisarevsky 已提交
414
        temp.allocator = &g_numpyAllocator;
415
        ERRWRAP2(m.copyTo(temp));
V
Vadim Pisarevsky 已提交
416 417
        p = &temp;
    }
418 419 420
    PyObject* o = (PyObject*)p->u->userdata;
    Py_INCREF(o);
    return o;
421 422
}

H
Hamdi Sahloul 已提交
423 424 425 426 427
template<typename _Tp, int m, int n>
PyObject* pyopencv_from(const Matx<_Tp, m, n>& matx)
{
    return pyopencv_from(Mat(matx));
}
428

429 430 431 432 433 434 435 436
template<typename T>
PyObject* pyopencv_from(const cv::Ptr<T>& p)
{
    if (!p)
        Py_RETURN_NONE;
    return pyopencv_from(*p);
}

437 438 439 440 441
typedef struct {
    PyObject_HEAD
    UMat* um;
} cv2_UMatWrapperObject;

442 443 444
static bool PyObject_IsUMat(PyObject *o);

// UMatWrapper init - try to map arguments from python to UMat constructors
445 446
static int UMatWrapper_init(cv2_UMatWrapperObject *self, PyObject *args, PyObject *kwds)
{
447 448 449 450 451 452 453 454 455
    self->um = NULL;
    {
        // constructor ()
        const char *kwlist[] = {NULL};
        if (PyArg_ParseTupleAndKeywords(args, kwds, "", (char**) kwlist)) {
            self->um = new UMat();
            return 0;
        }
        PyErr_Clear();
456
    }
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
    {
        // constructor (rows, cols, type)
        const char *kwlist[] = {"rows", "cols", "type", NULL};
        int rows, cols, type;
        if (PyArg_ParseTupleAndKeywords(args, kwds, "iii", (char**) kwlist, &rows, &cols, &type)) {
            self->um = new UMat(rows, cols, type);
            return 0;
        }
        PyErr_Clear();
    }
    {
        // constructor (m, rowRange, colRange)
        const char *kwlist[] = {"m", "rowRange", "colRange", NULL};
        PyObject *obj = NULL;
        int y0 = -1, y1 = -1, x0 = -1, x1 = -1;
        if (PyArg_ParseTupleAndKeywords(args, kwds, "O(ii)|(ii)", (char**) kwlist, &obj, &y0, &y1, &x0, &x1) && PyObject_IsUMat(obj)) {
            UMat *um_other = ((cv2_UMatWrapperObject *) obj)->um;
            Range rowRange(y0, y1);
            Range colRange = (x0 >= 0 && x1 >= 0) ? Range(x0, x1) : Range::all();
            self->um = new UMat(*um_other, rowRange, colRange);
            return 0;
        }
        PyErr_Clear();
    }
    {
        // constructor (m)
        const char *kwlist[] = {"m", NULL};
        PyObject *obj = NULL;
        if (PyArg_ParseTupleAndKeywords(args, kwds, "O", (char**) kwlist, &obj)) {
            // constructor (UMat m)
            if (PyObject_IsUMat(obj)) {
                UMat *um_other = ((cv2_UMatWrapperObject *) obj)->um;
                self->um = new UMat(*um_other);
                return 0;
            }
            // python specific constructor from array like object
            Mat m;
            if (pyopencv_to(obj, m, ArgInfo("UMatWrapper.np_mat", 0))) {
                self->um = new UMat();
                m.copyTo(*self->um);
                return 0;
            }
        }
        PyErr_Clear();
    }
    PyErr_SetString(PyExc_TypeError, "no matching UMat constructor found/supported");
    return -1;
504 505 506 507
}

static void UMatWrapper_dealloc(cv2_UMatWrapperObject* self)
{
508 509
    if (self->um)
        delete self->um;
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
#if PY_MAJOR_VERSION >= 3
    Py_TYPE(self)->tp_free((PyObject*)self);
#else
    self->ob_type->tp_free((PyObject*)self);
#endif
}

// UMatWrapper.get() - returns numpy array by transferring UMat data to Mat and than wrapping it to numpy array
// (using numpy allocator - and so without unnecessary copy)
static PyObject * UMatWrapper_get(cv2_UMatWrapperObject* self)
{
    Mat m;
    m.allocator = &g_numpyAllocator;
    self->um->copyTo(m);

    return pyopencv_from(m);
}

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
// UMatWrapper.handle() - returns the OpenCL handle of the UMat object
static PyObject * UMatWrapper_handle(cv2_UMatWrapperObject* self, PyObject *args, PyObject *kwds)
{
    const char *kwlist[] = {"accessFlags", NULL};
    int accessFlags;
    if (!PyArg_ParseTupleAndKeywords(args, kwds, "i", (char**) kwlist, &accessFlags))
        return 0;
    return PyLong_FromVoidPtr(self->um->handle(accessFlags));
}

// UMatWrapper.isContinuous() - returns true if the matrix data is continuous
static PyObject * UMatWrapper_isContinuous(cv2_UMatWrapperObject* self)
{
    return PyBool_FromLong(self->um->isContinuous());
}

// UMatWrapper.isContinuous() - returns true if the matrix is a submatrix of another matrix
static PyObject * UMatWrapper_isSubmatrix(cv2_UMatWrapperObject* self)
{
    return PyBool_FromLong(self->um->isSubmatrix());
}

// UMatWrapper.context() - returns the OpenCL context used by OpenCV UMat
static PyObject * UMatWrapper_context(cv2_UMatWrapperObject*)
{
    return PyLong_FromVoidPtr(cv::ocl::Context::getDefault().ptr());
}

// UMatWrapper.context() - returns the OpenCL queue used by OpenCV UMat
static PyObject * UMatWrapper_queue(cv2_UMatWrapperObject*)
{
    return PyLong_FromVoidPtr(cv::ocl::Queue::getDefault().ptr());
}

static PyObject * UMatWrapper_offset_getter(cv2_UMatWrapperObject* self, void*)
{
    return PyLong_FromSsize_t(self->um->offset);
}

567 568 569 570
static PyMethodDef UMatWrapper_methods[] = {
        {"get", (PyCFunction)UMatWrapper_get, METH_NOARGS,
                "Returns numpy array"
        },
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
        {"handle", (PyCFunction)UMatWrapper_handle, METH_VARARGS | METH_KEYWORDS,
                "Returns UMat native handle"
        },
        {"isContinuous", (PyCFunction)UMatWrapper_isContinuous, METH_NOARGS,
                "Returns true if the matrix data is continuous"
        },
        {"isSubmatrix", (PyCFunction)UMatWrapper_isSubmatrix, METH_NOARGS,
                "Returns true if the matrix is a submatrix of another matrix"
        },
        {"context", (PyCFunction)UMatWrapper_context, METH_NOARGS | METH_STATIC,
                "Returns OpenCL context handle"
        },
        {"queue", (PyCFunction)UMatWrapper_queue, METH_NOARGS | METH_STATIC,
                "Returns OpenCL queue handle"
        },
586 587 588
        {NULL, NULL, 0, NULL}  /* Sentinel */
};

589 590 591 592
static PyGetSetDef UMatWrapper_getset[] = {
        {(char*) "offset", (getter) UMatWrapper_offset_getter, NULL, NULL, NULL},
        {NULL, NULL, NULL, NULL, NULL}  /* Sentinel */
};
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628

static PyTypeObject cv2_UMatWrapperType = {
#if PY_MAJOR_VERSION >= 3
        PyVarObject_HEAD_INIT(NULL, 0)
#else
        PyObject_HEAD_INIT(NULL)
        0,                             /*ob_size*/
#endif
        "cv2.UMat",                    /* tp_name */
        sizeof(cv2_UMatWrapperObject), /* tp_basicsize */
        0,                             /* tp_itemsize */
      (destructor)UMatWrapper_dealloc, /* tp_dealloc */
        0,                             /* tp_print */
        0,                             /* tp_getattr */
        0,                             /* tp_setattr */
        0,                             /* tp_reserved */
        0,                             /* tp_repr */
        0,                             /* tp_as_number */
        0,                             /* tp_as_sequence */
        0,                             /* tp_as_mapping */
        0,                             /* tp_hash  */
        0,                             /* tp_call */
        0,                             /* tp_str */
        0,                             /* tp_getattro */
        0,                             /* tp_setattro */
        0,                             /* tp_as_buffer */
        Py_TPFLAGS_DEFAULT,            /* tp_flags */
        "OpenCV 3 UMat wrapper. Used for T-API support.", /* tp_doc */
        0,                             /* tp_traverse */
        0,                             /* tp_clear */
        0,                             /* tp_richcompare */
        0,                             /* tp_weaklistoffset */
        0,                             /* tp_iter */
        0,                             /* tp_iternext */
        UMatWrapper_methods,           /* tp_methods */
        0,                             /* tp_members */
629
        UMatWrapper_getset,            /* tp_getset */
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
        0,                             /* tp_base */
        0,                             /* tp_dict */
        0,                             /* tp_descr_get */
        0,                             /* tp_descr_set */
        0,                             /* tp_dictoffset */
        (initproc)UMatWrapper_init,    /* tp_init */
        0,                             /* tp_alloc */
        PyType_GenericNew,             /* tp_new */
        0,                             /* tp_free */
        0,                             /* tp_is_gc */
        0,                             /* tp_bases */
        0,                             /* tp_mro */
        0,                             /* tp_cache */
        0,                             /* tp_subclasses */
        0,                             /* tp_weaklist */
        0,                             /* tp_del */
        0,                             /* tp_version_tag */
#if PY_MAJOR_VERSION >= 3
        0,                             /* tp_finalize */
#endif
};

652 653 654 655
static bool PyObject_IsUMat(PyObject *o) {
    return (o != NULL) && PyObject_TypeCheck(o, &cv2_UMatWrapperType);
}

656
static bool pyopencv_to(PyObject* o, UMat& um, const ArgInfo info) {
657
    if (PyObject_IsUMat(o)) {
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
        um = *((cv2_UMatWrapperObject *) o)->um;
        return true;
    }

    Mat m;
    if (!pyopencv_to(o, m, info)) {
        return false;
    }

    m.copyTo(um);
    return true;
}

template<>
bool pyopencv_to(PyObject* o, UMat& um, const char* name)
{
    return pyopencv_to(o, um, ArgInfo(name, 0));
}

template<>
PyObject* pyopencv_from(const UMat& m) {
    PyObject *o = PyObject_CallObject((PyObject *) &cv2_UMatWrapperType, NULL);
    *((cv2_UMatWrapperObject *) o)->um = m;
    return o;
}

684 685
template<>
bool pyopencv_to(PyObject *o, Scalar& s, const char *name)
686
{
V
Vadim Pisarevsky 已提交
687 688
    if(!o || o == Py_None)
        return true;
689 690 691
    if (PySequence_Check(o)) {
        PyObject *fi = PySequence_Fast(o, name);
        if (fi == NULL)
V
Vadim Pisarevsky 已提交
692
            return false;
693 694 695
        if (4 < PySequence_Fast_GET_SIZE(fi))
        {
            failmsg("Scalar value for argument '%s' is longer than 4", name);
V
Vadim Pisarevsky 已提交
696
            return false;
697 698 699 700
        }
        for (Py_ssize_t i = 0; i < PySequence_Fast_GET_SIZE(fi); i++) {
            PyObject *item = PySequence_Fast_GET_ITEM(fi, i);
            if (PyFloat_Check(item) || PyInt_Check(item)) {
701
                s[(int)i] = PyFloat_AsDouble(item);
702 703
            } else {
                failmsg("Scalar value for argument '%s' is not numeric", name);
V
Vadim Pisarevsky 已提交
704
                return false;
705 706 707 708 709 710 711 712
            }
        }
        Py_DECREF(fi);
    } else {
        if (PyFloat_Check(o) || PyInt_Check(o)) {
            s[0] = PyFloat_AsDouble(o);
        } else {
            failmsg("Scalar value for argument '%s' is not numeric", name);
V
Vadim Pisarevsky 已提交
713
            return false;
714 715
        }
    }
V
Vadim Pisarevsky 已提交
716
    return true;
717 718
}

719 720
template<>
PyObject* pyopencv_from(const Scalar& src)
V
Vadim Pisarevsky 已提交
721 722 723
{
    return Py_BuildValue("(dddd)", src[0], src[1], src[2], src[3]);
}
724

725 726
template<>
PyObject* pyopencv_from(const bool& value)
727
{
V
Vadim Pisarevsky 已提交
728 729 730
    return PyBool_FromLong(value);
}

731 732
template<>
bool pyopencv_to(PyObject* obj, bool& value, const char* name)
V
Vadim Pisarevsky 已提交
733
{
A
Andrey Kamaev 已提交
734
    (void)name;
V
Vadim Pisarevsky 已提交
735 736 737 738 739 740 741 742 743
    if(!obj || obj == Py_None)
        return true;
    int _val = PyObject_IsTrue(obj);
    if(_val < 0)
        return false;
    value = _val > 0;
    return true;
}

744 745
template<>
PyObject* pyopencv_from(const size_t& value)
V
Vadim Pisarevsky 已提交
746
{
747
    return PyLong_FromSize_t(value);
V
Vadim Pisarevsky 已提交
748
}
749

750 751
template<>
bool pyopencv_to(PyObject* obj, size_t& value, const char* name)
752
{
A
Andrey Kamaev 已提交
753
    (void)name;
754 755 756
    if(!obj || obj == Py_None)
        return true;
    value = (int)PyLong_AsUnsignedLong(obj);
757
    return value != (size_t)-1 || !PyErr_Occurred();
758 759
}

760 761
template<>
PyObject* pyopencv_from(const int& value)
V
Vadim Pisarevsky 已提交
762 763
{
    return PyInt_FromLong(value);
764 765
}

766 767
template<>
bool pyopencv_to(PyObject* obj, int& value, const char* name)
768
{
A
Andrey Kamaev 已提交
769
    (void)name;
770 771
    if(!obj || obj == Py_None)
        return true;
772 773 774 775 776 777
    if(PyInt_Check(obj))
        value = (int)PyInt_AsLong(obj);
    else if(PyLong_Check(obj))
        value = (int)PyLong_AsLong(obj);
    else
        return false;
778 779 780
    return value != -1 || !PyErr_Occurred();
}

781 782
template<>
PyObject* pyopencv_from(const uchar& value)
783 784 785 786
{
    return PyInt_FromLong(value);
}

787 788
template<>
bool pyopencv_to(PyObject* obj, uchar& value, const char* name)
789
{
A
Andrey Kamaev 已提交
790
    (void)name;
V
Vadim Pisarevsky 已提交
791 792
    if(!obj || obj == Py_None)
        return true;
793 794 795
    int ivalue = (int)PyInt_AsLong(obj);
    value = cv::saturate_cast<uchar>(ivalue);
    return ivalue != -1 || !PyErr_Occurred();
V
Vadim Pisarevsky 已提交
796 797
}

798 799
template<>
PyObject* pyopencv_from(const double& value)
V
Vadim Pisarevsky 已提交
800 801 802 803
{
    return PyFloat_FromDouble(value);
}

804 805
template<>
bool pyopencv_to(PyObject* obj, double& value, const char* name)
V
Vadim Pisarevsky 已提交
806
{
A
Andrey Kamaev 已提交
807
    (void)name;
V
Vadim Pisarevsky 已提交
808 809
    if(!obj || obj == Py_None)
        return true;
810
    if(!!PyInt_CheckExact(obj))
V
Vadim Pisarevsky 已提交
811
        value = (double)PyInt_AS_LONG(obj);
812
    else
V
Vadim Pisarevsky 已提交
813 814
        value = PyFloat_AsDouble(obj);
    return !PyErr_Occurred();
815 816
}

817 818
template<>
PyObject* pyopencv_from(const float& value)
819
{
V
Vadim Pisarevsky 已提交
820
    return PyFloat_FromDouble(value);
821
}
V
Vadim Pisarevsky 已提交
822

823 824
template<>
bool pyopencv_to(PyObject* obj, float& value, const char* name)
825
{
A
Andrey Kamaev 已提交
826
    (void)name;
V
Vadim Pisarevsky 已提交
827 828
    if(!obj || obj == Py_None)
        return true;
829
    if(!!PyInt_CheckExact(obj))
V
Vadim Pisarevsky 已提交
830 831 832 833
        value = (float)PyInt_AS_LONG(obj);
    else
        value = (float)PyFloat_AsDouble(obj);
    return !PyErr_Occurred();
834 835
}

836 837
template<>
PyObject* pyopencv_from(const int64& value)
838
{
839
    return PyLong_FromLongLong(value);
840 841
}

842 843
template<>
PyObject* pyopencv_from(const String& value)
V
Vadim Pisarevsky 已提交
844 845 846
{
    return PyString_FromString(value.empty() ? "" : value.c_str());
}
847

848 849
template<>
bool pyopencv_to(PyObject* obj, String& value, const char* name)
850
{
A
Andrey Kamaev 已提交
851
    (void)name;
V
Vadim Pisarevsky 已提交
852 853 854 855 856
    if(!obj || obj == Py_None)
        return true;
    char* str = PyString_AsString(obj);
    if(!str)
        return false;
857
    value = String(str);
V
Vadim Pisarevsky 已提交
858 859 860
    return true;
}

861 862
template<>
bool pyopencv_to(PyObject* obj, Size& sz, const char* name)
V
Vadim Pisarevsky 已提交
863
{
A
Andrey Kamaev 已提交
864
    (void)name;
V
Vadim Pisarevsky 已提交
865 866
    if(!obj || obj == Py_None)
        return true;
A
Alexander Mordvintsev 已提交
867
    return PyArg_ParseTuple(obj, "ii", &sz.width, &sz.height) > 0;
V
Vadim Pisarevsky 已提交
868 869
}

870 871
template<>
PyObject* pyopencv_from(const Size& sz)
V
Vadim Pisarevsky 已提交
872 873 874 875
{
    return Py_BuildValue("(ii)", sz.width, sz.height);
}

876 877 878 879 880 881 882 883 884 885 886 887 888 889 890
template<>
bool pyopencv_to(PyObject* obj, Size_<float>& sz, const char* name)
{
    (void)name;
    if(!obj || obj == Py_None)
        return true;
    return PyArg_ParseTuple(obj, "ff", &sz.width, &sz.height) > 0;
}

template<>
PyObject* pyopencv_from(const Size_<float>& sz)
{
    return Py_BuildValue("(ff)", sz.width, sz.height);
}

891 892
template<>
bool pyopencv_to(PyObject* obj, Rect& r, const char* name)
V
Vadim Pisarevsky 已提交
893
{
A
Andrey Kamaev 已提交
894
    (void)name;
V
Vadim Pisarevsky 已提交
895 896
    if(!obj || obj == Py_None)
        return true;
A
Alexander Mordvintsev 已提交
897
    return PyArg_ParseTuple(obj, "iiii", &r.x, &r.y, &r.width, &r.height) > 0;
V
Vadim Pisarevsky 已提交
898 899
}

900 901
template<>
PyObject* pyopencv_from(const Rect& r)
V
Vadim Pisarevsky 已提交
902 903 904 905
{
    return Py_BuildValue("(iiii)", r.x, r.y, r.width, r.height);
}

B
berak 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
template<>
bool pyopencv_to(PyObject* obj, Rect2d& r, const char* name)
{
    (void)name;
    if(!obj || obj == Py_None)
        return true;
    return PyArg_ParseTuple(obj, "dddd", &r.x, &r.y, &r.width, &r.height) > 0;
}

template<>
PyObject* pyopencv_from(const Rect2d& r)
{
    return Py_BuildValue("(dddd)", r.x, r.y, r.width, r.height);
}

921 922
template<>
bool pyopencv_to(PyObject* obj, Range& r, const char* name)
V
Vadim Pisarevsky 已提交
923
{
A
Andrey Kamaev 已提交
924
    (void)name;
V
Vadim Pisarevsky 已提交
925 926 927
    if(!obj || obj == Py_None)
        return true;
    if(PyObject_Size(obj) == 0)
928
    {
V
Vadim Pisarevsky 已提交
929 930
        r = Range::all();
        return true;
931
    }
A
Alexander Mordvintsev 已提交
932
    return PyArg_ParseTuple(obj, "ii", &r.start, &r.end) > 0;
V
Vadim Pisarevsky 已提交
933 934
}

935 936
template<>
PyObject* pyopencv_from(const Range& r)
V
Vadim Pisarevsky 已提交
937 938 939 940
{
    return Py_BuildValue("(ii)", r.start, r.end);
}

941 942
template<>
bool pyopencv_to(PyObject* obj, Point& p, const char* name)
V
Vadim Pisarevsky 已提交
943
{
A
Andrey Kamaev 已提交
944
    (void)name;
V
Vadim Pisarevsky 已提交
945 946
    if(!obj || obj == Py_None)
        return true;
947
    if(!!PyComplex_CheckExact(obj))
V
Vadim Pisarevsky 已提交
948 949 950 951 952 953
    {
        Py_complex c = PyComplex_AsCComplex(obj);
        p.x = saturate_cast<int>(c.real);
        p.y = saturate_cast<int>(c.imag);
        return true;
    }
A
Alexander Mordvintsev 已提交
954
    return PyArg_ParseTuple(obj, "ii", &p.x, &p.y) > 0;
V
Vadim Pisarevsky 已提交
955 956
}

957 958
template<>
bool pyopencv_to(PyObject* obj, Point2f& p, const char* name)
V
Vadim Pisarevsky 已提交
959
{
A
Andrey Kamaev 已提交
960
    (void)name;
V
Vadim Pisarevsky 已提交
961 962
    if(!obj || obj == Py_None)
        return true;
963
    if(!!PyComplex_CheckExact(obj))
964
    {
V
Vadim Pisarevsky 已提交
965 966 967 968 969
        Py_complex c = PyComplex_AsCComplex(obj);
        p.x = saturate_cast<float>(c.real);
        p.y = saturate_cast<float>(c.imag);
        return true;
    }
A
Alexander Mordvintsev 已提交
970
    return PyArg_ParseTuple(obj, "ff", &p.x, &p.y) > 0;
V
Vadim Pisarevsky 已提交
971 972
}

973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
template<>
bool pyopencv_to(PyObject* obj, Point2d& p, const char* name)
{
    (void)name;
    if(!obj || obj == Py_None)
        return true;
    if(!!PyComplex_CheckExact(obj))
    {
        Py_complex c = PyComplex_AsCComplex(obj);
        p.x = saturate_cast<double>(c.real);
        p.y = saturate_cast<double>(c.imag);
        return true;
    }
    return PyArg_ParseTuple(obj, "dd", &p.x, &p.y) > 0;
}

W
Wangyida 已提交
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
template<>
bool pyopencv_to(PyObject* obj, Point3f& p, const char* name)
{
    (void)name;
    if(!obj || obj == Py_None)
        return true;
    return PyArg_ParseTuple(obj, "fff", &p.x, &p.y, &p.z) > 0;
}

template<>
bool pyopencv_to(PyObject* obj, Point3d& p, const char* name)
{
    (void)name;
    if(!obj || obj == Py_None)
        return true;
    return PyArg_ParseTuple(obj, "ddd", &p.x, &p.y, &p.z) > 0;
}
1006

1007 1008
template<>
PyObject* pyopencv_from(const Point& p)
V
Vadim Pisarevsky 已提交
1009 1010 1011 1012
{
    return Py_BuildValue("(ii)", p.x, p.y);
}

1013 1014
template<>
PyObject* pyopencv_from(const Point2f& p)
V
Vadim Pisarevsky 已提交
1015 1016 1017 1018
{
    return Py_BuildValue("(dd)", p.x, p.y);
}

W
Wangyida 已提交
1019 1020 1021 1022 1023 1024
template<>
PyObject* pyopencv_from(const Point3f& p)
{
    return Py_BuildValue("(ddd)", p.x, p.y, p.z);
}

1025 1026
template<>
bool pyopencv_to(PyObject* obj, Vec3d& v, const char* name)
V
Vadim Pisarevsky 已提交
1027
{
A
Andrey Kamaev 已提交
1028
    (void)name;
V
Vadim Pisarevsky 已提交
1029 1030
    if(!obj)
        return true;
A
Alexander Mordvintsev 已提交
1031
    return PyArg_ParseTuple(obj, "ddd", &v[0], &v[1], &v[2]) > 0;
V
Vadim Pisarevsky 已提交
1032 1033
}

1034 1035
template<>
PyObject* pyopencv_from(const Vec3d& v)
V
Vadim Pisarevsky 已提交
1036 1037 1038 1039
{
    return Py_BuildValue("(ddd)", v[0], v[1], v[2]);
}

1040 1041
template<>
PyObject* pyopencv_from(const Vec2d& v)
A
Andrey Kamaev 已提交
1042 1043 1044 1045
{
    return Py_BuildValue("(dd)", v[0], v[1]);
}

1046 1047
template<>
PyObject* pyopencv_from(const Point2d& p)
V
Vadim Pisarevsky 已提交
1048 1049 1050 1051
{
    return Py_BuildValue("(dd)", p.x, p.y);
}

W
Wangyida 已提交
1052 1053 1054
template<>
PyObject* pyopencv_from(const Point3d& p)
{
1055
    return Py_BuildValue("(ddd)", p.x, p.y, p.z);
W
Wangyida 已提交
1056 1057
}

V
Vadim Pisarevsky 已提交
1058 1059
template<typename _Tp> struct pyopencvVecConverter
{
1060
    static bool to(PyObject* obj, std::vector<_Tp>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1061 1062
    {
        typedef typename DataType<_Tp>::channel_type _Cp;
V
Vadim Pisarevsky 已提交
1063
        if(!obj || obj == Py_None)
V
Vadim Pisarevsky 已提交
1064 1065 1066 1067
            return true;
        if (PyArray_Check(obj))
        {
            Mat m;
1068
            pyopencv_to(obj, m, info);
V
Vadim Pisarevsky 已提交
1069 1070 1071 1072
            m.copyTo(value);
        }
        if (!PySequence_Check(obj))
            return false;
1073
        PyObject *seq = PySequence_Fast(obj, info.name);
V
Vadim Pisarevsky 已提交
1074 1075 1076 1077
        if (seq == NULL)
            return false;
        int i, j, n = (int)PySequence_Fast_GET_SIZE(seq);
        value.resize(n);
1078

V
Vadim Pisarevsky 已提交
1079 1080 1081
        int type = DataType<_Tp>::type;
        int depth = CV_MAT_DEPTH(type), channels = CV_MAT_CN(type);
        PyObject** items = PySequence_Fast_ITEMS(seq);
1082

V
Vadim Pisarevsky 已提交
1083 1084 1085 1086 1087 1088
        for( i = 0; i < n; i++ )
        {
            PyObject* item = items[i];
            PyObject* seq_i = 0;
            PyObject** items_i = &item;
            _Cp* data = (_Cp*)&value[i];
1089

V
Vadim Pisarevsky 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098
            if( channels == 2 && PyComplex_CheckExact(item) )
            {
                Py_complex c = PyComplex_AsCComplex(obj);
                data[0] = saturate_cast<_Cp>(c.real);
                data[1] = saturate_cast<_Cp>(c.imag);
                continue;
            }
            if( channels > 1 )
            {
V
Vadim Pisarevsky 已提交
1099
                if( PyArray_Check(item))
V
Vadim Pisarevsky 已提交
1100 1101
                {
                    Mat src;
1102
                    pyopencv_to(item, src, info);
V
Vadim Pisarevsky 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
                    if( src.dims != 2 || src.channels() != 1 ||
                       ((src.cols != 1 || src.rows != channels) &&
                        (src.cols != channels || src.rows != 1)))
                        break;
                    Mat dst(src.rows, src.cols, depth, data);
                    src.convertTo(dst, type);
                    if( dst.data != (uchar*)data )
                        break;
                    continue;
                }
1113

1114
                seq_i = PySequence_Fast(item, info.name);
V
Vadim Pisarevsky 已提交
1115 1116 1117 1118 1119 1120 1121
                if( !seq_i || (int)PySequence_Fast_GET_SIZE(seq_i) != channels )
                {
                    Py_XDECREF(seq_i);
                    break;
                }
                items_i = PySequence_Fast_ITEMS(seq_i);
            }
1122

V
Vadim Pisarevsky 已提交
1123 1124 1125 1126 1127
            for( j = 0; j < channels; j++ )
            {
                PyObject* item_ij = items_i[j];
                if( PyInt_Check(item_ij))
                {
1128 1129 1130 1131 1132 1133 1134 1135
                    int v = (int)PyInt_AsLong(item_ij);
                    if( v == -1 && PyErr_Occurred() )
                        break;
                    data[j] = saturate_cast<_Cp>(v);
                }
                else if( PyLong_Check(item_ij))
                {
                    int v = (int)PyLong_AsLong(item_ij);
V
Vadim Pisarevsky 已提交
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
                    if( v == -1 && PyErr_Occurred() )
                        break;
                    data[j] = saturate_cast<_Cp>(v);
                }
                else if( PyFloat_Check(item_ij))
                {
                    double v = PyFloat_AsDouble(item_ij);
                    if( PyErr_Occurred() )
                        break;
                    data[j] = saturate_cast<_Cp>(v);
                }
                else
                    break;
            }
            Py_XDECREF(seq_i);
            if( j < channels )
                break;
        }
        Py_DECREF(seq);
        return i == n;
1156
    }
1157

1158
    static PyObject* from(const std::vector<_Tp>& value)
V
Vadim Pisarevsky 已提交
1159 1160 1161 1162 1163 1164 1165 1166
    {
        if(value.empty())
            return PyTuple_New(0);
        Mat src((int)value.size(), DataType<_Tp>::channels, DataType<_Tp>::depth, (uchar*)&value[0]);
        return pyopencv_from(src);
    }
};

A
abidrahmank 已提交
1167
template<typename _Tp>
1168
bool pyopencv_to(PyObject* obj, std::vector<_Tp>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1169
{
1170
    return pyopencvVecConverter<_Tp>::to(obj, value, info);
V
Vadim Pisarevsky 已提交
1171 1172
}

1173 1174
template<typename _Tp>
PyObject* pyopencv_from(const std::vector<_Tp>& value)
V
Vadim Pisarevsky 已提交
1175 1176 1177 1178
{
    return pyopencvVecConverter<_Tp>::from(value);
}

1179
template<typename _Tp> static inline bool pyopencv_to_generic_vec(PyObject* obj, std::vector<_Tp>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1180
{
V
Vadim Pisarevsky 已提交
1181 1182
    if(!obj || obj == Py_None)
       return true;
V
Vadim Pisarevsky 已提交
1183 1184
    if (!PySequence_Check(obj))
        return false;
1185
    PyObject *seq = PySequence_Fast(obj, info.name);
V
Vadim Pisarevsky 已提交
1186 1187 1188 1189
    if (seq == NULL)
        return false;
    int i, n = (int)PySequence_Fast_GET_SIZE(seq);
    value.resize(n);
1190

V
Vadim Pisarevsky 已提交
1191
    PyObject** items = PySequence_Fast_ITEMS(seq);
1192

V
Vadim Pisarevsky 已提交
1193 1194 1195
    for( i = 0; i < n; i++ )
    {
        PyObject* item = items[i];
1196
        if(!pyopencv_to(item, value[i], info))
V
Vadim Pisarevsky 已提交
1197 1198 1199 1200 1201 1202
            break;
    }
    Py_DECREF(seq);
    return i == n;
}

1203
template<typename _Tp> static inline PyObject* pyopencv_from_generic_vec(const std::vector<_Tp>& value)
V
Vadim Pisarevsky 已提交
1204 1205
{
    int i, n = (int)value.size();
V
Vadim Pisarevsky 已提交
1206
    PyObject* seq = PyList_New(n);
V
Vadim Pisarevsky 已提交
1207
    for( i = 0; i < n; i++ )
1208
    {
V
Vadim Pisarevsky 已提交
1209 1210 1211
        PyObject* item = pyopencv_from(value[i]);
        if(!item)
            break;
V
Vadim Pisarevsky 已提交
1212
        PyList_SET_ITEM(seq, i, item);
V
Vadim Pisarevsky 已提交
1213 1214
    }
    if( i < n )
1215
    {
V
Vadim Pisarevsky 已提交
1216
        Py_DECREF(seq);
1217 1218
        return 0;
    }
V
Vadim Pisarevsky 已提交
1219 1220 1221
    return seq;
}

1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
template<>
PyObject* pyopencv_from(const std::pair<int, double>& src)
{
    return Py_BuildValue("(id)", src.first, src.second);
}

template<typename _Tp, typename _Tr> struct pyopencvVecConverter<std::pair<_Tp, _Tr> >
{
    static bool to(PyObject* obj, std::vector<std::pair<_Tp, _Tr> >& value, const ArgInfo info)
    {
        return pyopencv_to_generic_vec(obj, value, info);
    }

    static PyObject* from(const std::vector<std::pair<_Tp, _Tr> >& value)
    {
        return pyopencv_from_generic_vec(value);
    }
};
V
Vadim Pisarevsky 已提交
1240

1241
template<typename _Tp> struct pyopencvVecConverter<std::vector<_Tp> >
V
Vadim Pisarevsky 已提交
1242
{
A
abidrahmank 已提交
1243
    static bool to(PyObject* obj, std::vector<std::vector<_Tp> >& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1244
    {
A
abidrahmank 已提交
1245
        return pyopencv_to_generic_vec(obj, value, info);
V
Vadim Pisarevsky 已提交
1246
    }
1247

1248
    static PyObject* from(const std::vector<std::vector<_Tp> >& value)
V
Vadim Pisarevsky 已提交
1249 1250 1251 1252 1253 1254 1255
    {
        return pyopencv_from_generic_vec(value);
    }
};

template<> struct pyopencvVecConverter<Mat>
{
1256
    static bool to(PyObject* obj, std::vector<Mat>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1257
    {
1258
        return pyopencv_to_generic_vec(obj, value, info);
V
Vadim Pisarevsky 已提交
1259
    }
1260

1261
    static PyObject* from(const std::vector<Mat>& value)
V
Vadim Pisarevsky 已提交
1262 1263 1264 1265
    {
        return pyopencv_from_generic_vec(value);
    }
};
1266

V
Vadim Pisarevsky 已提交
1267
template<> struct pyopencvVecConverter<KeyPoint>
1268
{
1269
    static bool to(PyObject* obj, std::vector<KeyPoint>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1270
    {
1271
        return pyopencv_to_generic_vec(obj, value, info);
V
Vadim Pisarevsky 已提交
1272
    }
1273

1274
    static PyObject* from(const std::vector<KeyPoint>& value)
V
Vadim Pisarevsky 已提交
1275 1276 1277 1278 1279
    {
        return pyopencv_from_generic_vec(value);
    }
};

1280 1281
template<> struct pyopencvVecConverter<DMatch>
{
1282
    static bool to(PyObject* obj, std::vector<DMatch>& value, const ArgInfo info)
1283
    {
1284
        return pyopencv_to_generic_vec(obj, value, info);
1285
    }
1286

1287
    static PyObject* from(const std::vector<DMatch>& value)
1288 1289 1290 1291 1292
    {
        return pyopencv_from_generic_vec(value);
    }
};

1293
template<> struct pyopencvVecConverter<String>
V
Vadim Pisarevsky 已提交
1294
{
1295
    static bool to(PyObject* obj, std::vector<String>& value, const ArgInfo info)
V
Vadim Pisarevsky 已提交
1296
    {
1297
        return pyopencv_to_generic_vec(obj, value, info);
V
Vadim Pisarevsky 已提交
1298
    }
1299

1300
    static PyObject* from(const std::vector<String>& value)
V
Vadim Pisarevsky 已提交
1301 1302 1303 1304 1305
    {
        return pyopencv_from_generic_vec(value);
    }
};

1306 1307
template<>
bool pyopencv_to(PyObject *obj, TermCriteria& dst, const char *name)
1308
{
A
Andrey Kamaev 已提交
1309
    (void)name;
V
Vadim Pisarevsky 已提交
1310 1311 1312
    if(!obj)
        return true;
    return PyArg_ParseTuple(obj, "iid", &dst.type, &dst.maxCount, &dst.epsilon) > 0;
1313 1314
}

1315 1316
template<>
PyObject* pyopencv_from(const TermCriteria& src)
1317
{
V
Vadim Pisarevsky 已提交
1318
    return Py_BuildValue("(iid)", src.type, src.maxCount, src.epsilon);
1319 1320
}

1321 1322
template<>
bool pyopencv_to(PyObject *obj, RotatedRect& dst, const char *name)
1323
{
A
Andrey Kamaev 已提交
1324
    (void)name;
V
Vadim Pisarevsky 已提交
1325 1326 1327
    if(!obj)
        return true;
    return PyArg_ParseTuple(obj, "(ff)(ff)f", &dst.center.x, &dst.center.y, &dst.size.width, &dst.size.height, &dst.angle) > 0;
1328 1329
}

1330 1331
template<>
PyObject* pyopencv_from(const RotatedRect& src)
1332
{
V
Vadim Pisarevsky 已提交
1333
    return Py_BuildValue("((ff)(ff)f)", src.center.x, src.center.y, src.size.width, src.size.height, src.angle);
1334 1335
}

1336 1337
template<>
PyObject* pyopencv_from(const Moments& m)
1338
{
V
Vadim Pisarevsky 已提交
1339 1340 1341 1342 1343 1344 1345
    return Py_BuildValue("{s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d,s:d}",
                         "m00", m.m00, "m10", m.m10, "m01", m.m01,
                         "m20", m.m20, "m11", m.m11, "m02", m.m02,
                         "m30", m.m30, "m21", m.m21, "m12", m.m12, "m03", m.m03,
                         "mu20", m.mu20, "mu11", m.mu11, "mu02", m.mu02,
                         "mu30", m.mu30, "mu21", m.mu21, "mu12", m.mu12, "mu03", m.mu03,
                         "nu20", m.nu20, "nu11", m.nu11, "nu02", m.nu02,
1346
                         "nu30", m.nu30, "nu21", m.nu21, "nu12", m.nu12, "nu03", m.nu03);
1347 1348
}

1349
#include "pyopencv_custom_headers.h"
1350 1351 1352 1353 1354

static void OnMouse(int event, int x, int y, int flags, void* param)
{
    PyGILState_STATE gstate;
    gstate = PyGILState_Ensure();
1355

1356 1357
    PyObject *o = (PyObject*)param;
    PyObject *args = Py_BuildValue("iiiiO", event, x, y, flags, PyTuple_GetItem(o, 1));
1358

1359 1360 1361 1362 1363 1364 1365 1366 1367
    PyObject *r = PyObject_Call(PyTuple_GetItem(o, 0), args, NULL);
    if (r == NULL)
        PyErr_Print();
    else
        Py_DECREF(r);
    Py_DECREF(args);
    PyGILState_Release(gstate);
}

1368
#ifdef HAVE_OPENCV_HIGHGUI
A
Andrey Kamaev 已提交
1369
static PyObject *pycvSetMouseCallback(PyObject*, PyObject *args, PyObject *kw)
1370 1371 1372 1373 1374
{
    const char *keywords[] = { "window_name", "on_mouse", "param", NULL };
    char* name;
    PyObject *on_mouse;
    PyObject *param = NULL;
1375

1376 1377 1378 1379 1380 1381 1382 1383 1384
    if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|O", (char**)keywords, &name, &on_mouse, &param))
        return NULL;
    if (!PyCallable_Check(on_mouse)) {
        PyErr_SetString(PyExc_TypeError, "on_mouse must be callable");
        return NULL;
    }
    if (param == NULL) {
        param = Py_None;
    }
A
Andrey Kamaev 已提交
1385
    ERRWRAP2(setMouseCallback(name, OnMouse, Py_BuildValue("OO", on_mouse, param)));
1386 1387
    Py_RETURN_NONE;
}
1388
#endif
1389

1390
static void OnChange(int pos, void *param)
1391 1392 1393
{
    PyGILState_STATE gstate;
    gstate = PyGILState_Ensure();
1394

1395 1396 1397 1398 1399 1400 1401 1402 1403
    PyObject *o = (PyObject*)param;
    PyObject *args = Py_BuildValue("(i)", pos);
    PyObject *r = PyObject_Call(PyTuple_GetItem(o, 0), args, NULL);
    if (r == NULL)
        PyErr_Print();
    Py_DECREF(args);
    PyGILState_Release(gstate);
}

1404
#ifdef HAVE_OPENCV_HIGHGUI
A
Andrey Kamaev 已提交
1405
static PyObject *pycvCreateTrackbar(PyObject*, PyObject *args)
1406 1407 1408 1409 1410 1411
{
    PyObject *on_change;
    char* trackbar_name;
    char* window_name;
    int *value = new int;
    int count;
1412

1413 1414 1415 1416 1417 1418
    if (!PyArg_ParseTuple(args, "ssiiO", &trackbar_name, &window_name, value, &count, &on_change))
        return NULL;
    if (!PyCallable_Check(on_change)) {
        PyErr_SetString(PyExc_TypeError, "on_change must be callable");
        return NULL;
    }
A
Andrey Kamaev 已提交
1419
    ERRWRAP2(createTrackbar(trackbar_name, window_name, value, count, OnChange, Py_BuildValue("OO", on_change, Py_None)));
1420 1421 1422
    Py_RETURN_NONE;
}

1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
static void OnButtonChange(int state, void *param)
{
    PyGILState_STATE gstate;
    gstate = PyGILState_Ensure();

    PyObject *o = (PyObject*)param;
    PyObject *args;
    if(PyTuple_GetItem(o, 1) != NULL)
    {
        args = Py_BuildValue("(iO)", state, PyTuple_GetItem(o,1));
    }
    else
    {
        args = Py_BuildValue("(i)", state);
    }

    PyObject *r = PyObject_Call(PyTuple_GetItem(o, 0), args, NULL);
    if (r == NULL)
        PyErr_Print();
    Py_DECREF(args);
    PyGILState_Release(gstate);
}

static PyObject *pycvCreateButton(PyObject*, PyObject *args, PyObject *kw)
{
    const char* keywords[] = {"buttonName", "onChange", "userData", "buttonType", "initialButtonState", NULL};
    PyObject *on_change;
    PyObject *userdata = NULL;
    char* button_name;
    int button_type = 0;
1453
    int initial_button_state = 0;
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464

    if (!PyArg_ParseTupleAndKeywords(args, kw, "sO|Oii", (char**)keywords, &button_name, &on_change, &userdata, &button_type, &initial_button_state))
        return NULL;
    if (!PyCallable_Check(on_change)) {
        PyErr_SetString(PyExc_TypeError, "onChange must be callable");
        return NULL;
    }
    if (userdata == NULL) {
        userdata = Py_None;
    }

1465
    ERRWRAP2(createButton(button_name, OnButtonChange, Py_BuildValue("OO", on_change, userdata), button_type, initial_button_state != 0));
1466 1467 1468 1469
    Py_RETURN_NONE;
}
#endif

1470 1471
///////////////////////////////////////////////////////////////////////////////////////

1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
static int convert_to_char(PyObject *o, char *dst, const char *name = "no_name")
{
  if (PyString_Check(o) && PyString_Size(o) == 1) {
    *dst = PyString_AsString(o)[0];
    return 1;
  } else {
    (*dst) = 0;
    return failmsg("Expected single character string for argument '%s'", name);
  }
}

1483 1484 1485
#if PY_MAJOR_VERSION >= 3
#define MKTYPE2(NAME) pyopencv_##NAME##_specials(); if (!to_ok(&pyopencv_##NAME##_Type)) return NULL;
#else
1486
#define MKTYPE2(NAME) pyopencv_##NAME##_specials(); if (!to_ok(&pyopencv_##NAME##_Type)) return
1487
#endif
1488

A
Andrey Kamaev 已提交
1489 1490 1491 1492 1493
#ifdef __GNUC__
#  pragma GCC diagnostic ignored "-Wunused-parameter"
#  pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif

1494 1495 1496
#include "pyopencv_generated_types.h"
#include "pyopencv_generated_funcs.h"

A
Alexander Mordvintsev 已提交
1497
static PyMethodDef special_methods[] = {
1498
#ifdef HAVE_OPENCV_HIGHGUI
1499
  {"createTrackbar", pycvCreateTrackbar, METH_VARARGS, "createTrackbar(trackbarName, windowName, value, count, onChange) -> None"},
1500
  {"createButton", (PyCFunction)pycvCreateButton, METH_VARARGS | METH_KEYWORDS, "createButton(buttonName, onChange [, userData, buttonType, initialButtonState]) -> None"},
1501
  {"setMouseCallback", (PyCFunction)pycvSetMouseCallback, METH_VARARGS | METH_KEYWORDS, "setMouseCallback(windowName, onMouse [, param]) -> None"},
1502
#endif
1503 1504 1505 1506 1507 1508
  {NULL, NULL},
};

/************************************************************************/
/* Module init */

1509 1510 1511 1512 1513 1514 1515
struct ConstDef
{
    const char * name;
    long val;
};

static void init_submodule(PyObject * root, const char * name, PyMethodDef * methods, ConstDef * consts)
1516
{
1517
  // traverse and create nested submodules
1518
  std::string s = name;
1519 1520
  size_t i = s.find('.');
  while (i < s.length() && i != std::string::npos)
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
  {
    size_t j = s.find('.', i);
    if (j == std::string::npos)
        j = s.length();
    std::string short_name = s.substr(i, j-i);
    std::string full_name = s.substr(0, j);
    i = j+1;

    PyObject * d = PyModule_GetDict(root);
    PyObject * submod = PyDict_GetItemString(d, short_name.c_str());
    if (submod == NULL)
    {
        submod = PyImport_AddModule(full_name.c_str());
        PyDict_SetItemString(d, short_name.c_str(), submod);
    }
A
Adam Greig 已提交
1536 1537 1538

    if (short_name != "")
        root = submod;
1539 1540
  }

1541
  // populate module's dict
1542 1543 1544 1545 1546 1547 1548
  PyObject * d = PyModule_GetDict(root);
  for (PyMethodDef * m = methods; m->ml_name != NULL; ++m)
  {
    PyObject * method_obj = PyCFunction_NewEx(m, NULL, NULL);
    PyDict_SetItemString(d, m->ml_name, method_obj);
    Py_DECREF(method_obj);
  }
1549 1550 1551 1552 1553
  for (ConstDef * c = consts; c->name != NULL; ++c)
  {
    PyDict_SetItemString(d, c->name, PyInt_FromLong(c->val));
  }

1554 1555 1556 1557
}

#include "pyopencv_generated_ns_reg.h"

1558 1559 1560 1561 1562 1563 1564 1565
static int to_ok(PyTypeObject *to)
{
  to->tp_alloc = PyType_GenericAlloc;
  to->tp_new = PyType_GenericNew;
  to->tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE;
  return (PyType_Ready(to) == 0);
}

1566 1567 1568 1569 1570 1571 1572 1573 1574 1575

#if PY_MAJOR_VERSION >= 3
extern "C" CV_EXPORTS PyObject* PyInit_cv2();
static struct PyModuleDef cv2_moduledef =
{
    PyModuleDef_HEAD_INIT,
    MODULESTR,
    "Python wrapper for OpenCV.",
    -1,     /* size of per-interpreter state of the module,
               or -1 if the module keeps state in global variables. */
A
Alexander Mordvintsev 已提交
1576
    special_methods
1577 1578 1579 1580
};

PyObject* PyInit_cv2()
#else
1581
extern "C" CV_EXPORTS void initcv2();
1582 1583

void initcv2()
1584
#endif
1585
{
A
Andrey Kamaev 已提交
1586
  import_array();
1587

1588 1589
#include "pyopencv_generated_type_reg.h"

1590 1591 1592
#if PY_MAJOR_VERSION >= 3
  PyObject* m = PyModule_Create(&cv2_moduledef);
#else
A
Alexander Mordvintsev 已提交
1593
  PyObject* m = Py_InitModule(MODULESTR, special_methods);
1594
#endif
1595 1596
  init_submodules(m); // from "pyopencv_generated_ns_reg.h"

1597 1598
  PyObject* d = PyModule_GetDict(m);

V
Vadim Pisarevsky 已提交
1599
  PyDict_SetItemString(d, "__version__", PyString_FromString(CV_VERSION));
1600 1601 1602

  opencv_error = PyErr_NewException((char*)MODULESTR".error", NULL, NULL);
  PyDict_SetItemString(d, "error", opencv_error);
1603

1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
//Registering UMatWrapper python class in cv2 module:
  if (PyType_Ready(&cv2_UMatWrapperType) < 0)
#if PY_MAJOR_VERSION >= 3
    return NULL;
#else
    return;
#endif

#if PY_MAJOR_VERSION >= 3
  Py_INCREF(&cv2_UMatWrapperType);
#else
  // Unrolled Py_INCREF(&cv2_UMatWrapperType) without (PyObject*) cast
  // due to "warning: dereferencing type-punned pointer will break strict-aliasing rules"
  _Py_INC_REFTOTAL _Py_REF_DEBUG_COMMA (&cv2_UMatWrapperType)->ob_refcnt++;
#endif
  PyModule_AddObject(m, "UMat", (PyObject *)&cv2_UMatWrapperType);

1621
#define PUBLISH(I) PyDict_SetItemString(d, #I, PyInt_FromLong(I))
A
Andrey Kamaev 已提交
1622
//#define PUBLISHU(I) PyDict_SetItemString(d, #I, PyLong_FromUnsignedLong(I))
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
#define PUBLISH2(I, value) PyDict_SetItemString(d, #I, PyLong_FromLong(value))

  PUBLISH(CV_8U);
  PUBLISH(CV_8UC1);
  PUBLISH(CV_8UC2);
  PUBLISH(CV_8UC3);
  PUBLISH(CV_8UC4);
  PUBLISH(CV_8S);
  PUBLISH(CV_8SC1);
  PUBLISH(CV_8SC2);
  PUBLISH(CV_8SC3);
  PUBLISH(CV_8SC4);
  PUBLISH(CV_16U);
  PUBLISH(CV_16UC1);
  PUBLISH(CV_16UC2);
  PUBLISH(CV_16UC3);
  PUBLISH(CV_16UC4);
  PUBLISH(CV_16S);
  PUBLISH(CV_16SC1);
  PUBLISH(CV_16SC2);
  PUBLISH(CV_16SC3);
  PUBLISH(CV_16SC4);
  PUBLISH(CV_32S);
  PUBLISH(CV_32SC1);
  PUBLISH(CV_32SC2);
  PUBLISH(CV_32SC3);
  PUBLISH(CV_32SC4);
  PUBLISH(CV_32F);
  PUBLISH(CV_32FC1);
  PUBLISH(CV_32FC2);
  PUBLISH(CV_32FC3);
  PUBLISH(CV_32FC4);
  PUBLISH(CV_64F);
  PUBLISH(CV_64FC1);
  PUBLISH(CV_64FC2);
  PUBLISH(CV_64FC3);
  PUBLISH(CV_64FC4);
1660

1661 1662 1663
#if PY_MAJOR_VERSION >= 3
    return m;
#endif
A
Andrey Kamaev 已提交
1664
}