fixed bug in Python's calcEMD2 (ticket #1763)

pull/13383/head
Vadim Pisarevsky 13 years ago
parent ad8258f872
commit a110dc14ca
  1. 2
      modules/python/src2/cv2.cv.hpp

@ -3383,7 +3383,7 @@ static PyObject *pycvCalcEMD2(PyObject *self, PyObject *args, PyObject *kw)
PyObject *pyobj_cost_matrix = NULL;
CvArr* flow=NULL;
PyObject *pyobj_flow = NULL;
float lower_bound = 0.0;
float lower_bound = FLT_MAX;
PyObject *userdata = NULL;
if (!PyArg_ParseTupleAndKeywords(args, kw, "OOi|OOOfO", (char**)keywords,

Loading…
Cancel
Save