From: Vadim Pisarevsky Date: Tue, 24 Apr 2012 14:22:05 +0000 (+0000) Subject: fixed bug in Python's calcEMD2 (ticket #1763) X-Git-Tag: accepted/2.0/20130307.220821~590 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a110dc14caecb471626edc60e24cf855a61b8cd9;p=profile%2Fivi%2Fopencv.git fixed bug in Python's calcEMD2 (ticket #1763) --- diff --git a/modules/python/src2/cv2.cv.hpp b/modules/python/src2/cv2.cv.hpp index b90ff7a..0a6d5e2 100644 --- a/modules/python/src2/cv2.cv.hpp +++ b/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,