python: force using of ArgInfo
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
template<>
|
||||
bool pyopencv_to(PyObject *obj, CvTermCriteria& dst, const char *name)
|
||||
bool pyopencv_to(PyObject *obj, CvTermCriteria& dst, const ArgInfo& info)
|
||||
{
|
||||
CV_UNUSED(name);
|
||||
CV_UNUSED(info);
|
||||
if(!obj)
|
||||
return true;
|
||||
return PyArg_ParseTuple(obj, "iid", &dst.type, &dst.max_iter, &dst.epsilon) > 0;
|
||||
}
|
||||
|
||||
template<>
|
||||
bool pyopencv_to(PyObject* obj, CvSlice& r, const char* name)
|
||||
bool pyopencv_to(PyObject* obj, CvSlice& r, const ArgInfo& info)
|
||||
{
|
||||
CV_UNUSED(name);
|
||||
CV_UNUSED(info);
|
||||
if(!obj || obj == Py_None)
|
||||
return true;
|
||||
if(PyObject_Size(obj) == 0)
|
||||
|
||||
Reference in New Issue
Block a user