temporarily disabled java bindings for ml; hopefully fixed warnings etc.

This commit is contained in:
Vadim Pisarevsky
2014-08-03 04:28:20 +04:00
parent 2520e335d1
commit 8e9d1d9fe6
5 changed files with 10 additions and 11 deletions

View File

@@ -376,6 +376,12 @@ static bool pyopencv_to(PyObject* o, Mat& m, const ArgInfo info)
return true;
}
template<>
bool pyopencv_to(PyObject* o, Mat& m, const char* name)
{
return pyopencv_to(o, m, ArgInfo(name, 0));
}
template<>
PyObject* pyopencv_from(const Mat& m)
{