cv::Matx python wrapper

pull/8233/head
Hamdi Sahloul 8 years ago
parent b2da9df82d
commit 232d6b87f4
  1. 5
      modules/python/src2/cv2.cpp

@ -411,6 +411,11 @@ PyObject* pyopencv_from(const Mat& m)
return o;
}
template<typename _Tp, int m, int n>
PyObject* pyopencv_from(const Matx<_Tp, m, n>& matx)
{
return pyopencv_from(Mat(matx));
}
typedef struct {
PyObject_HEAD

Loading…
Cancel
Save