1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-24 03:03:35 +08:00

Added python scripts to estimating accuracy

This commit is contained in:
Aleksandr Rybnikov
2017-04-17 13:45:03 +03:00
parent 3f5b465501
commit 053303ab44
14 changed files with 860 additions and 68 deletions

View File

@@ -26,4 +26,10 @@ bool pyopencv_to(PyObject *o, dnn::DictValue &dv, const char *name)
return false;
}
template<>
bool pyopencv_to(PyObject *o, std::vector<Mat> &blobs, const char *name) //required for Layer::blobs RW
{
return pyopencvVecConverter<Mat>::to(o, blobs, ArgInfo(name, false));
}
#endif