1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00

python: force using of ArgInfo

This commit is contained in:
Alexander Alekhin
2019-11-15 18:04:16 +03:00
parent 10828884ec
commit 47de8dd38f
4 changed files with 23 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
template<> struct pyopencvVecConverter<line_descriptor::KeyLine>
{
static bool to(PyObject* obj, std::vector<line_descriptor::KeyLine>& value, const ArgInfo info)
static bool to(PyObject* obj, std::vector<line_descriptor::KeyLine>& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}

View File

@@ -3,7 +3,7 @@
template<> struct pyopencvVecConverter<linemod::Match>
{
static bool to(PyObject* obj, std::vector<linemod::Match>& value, const ArgInfo info)
static bool to(PyObject* obj, std::vector<linemod::Match>& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}
@@ -16,7 +16,7 @@ template<> struct pyopencvVecConverter<linemod::Match>
template<> struct pyopencvVecConverter<linemod::Template>
{
static bool to(PyObject* obj, std::vector<linemod::Template>& value, const ArgInfo info)
static bool to(PyObject* obj, std::vector<linemod::Template>& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}
@@ -29,7 +29,7 @@ template<> struct pyopencvVecConverter<linemod::Template>
template<> struct pyopencvVecConverter<linemod::Feature>
{
static bool to(PyObject* obj, std::vector<linemod::Feature>& value, const ArgInfo info)
static bool to(PyObject* obj, std::vector<linemod::Feature>& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}
@@ -42,7 +42,7 @@ template<> struct pyopencvVecConverter<linemod::Feature>
template<> struct pyopencvVecConverter<Ptr<linemod::Modality> >
{
static bool to(PyObject* obj, std::vector<Ptr<linemod::Modality> >& value, const ArgInfo info)
static bool to(PyObject* obj, std::vector<Ptr<linemod::Modality> >& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}

View File

@@ -67,7 +67,7 @@ typedef Ptr<PoseCluster3D> PoseCluster3DPtr;
* various helper methods to work with poses
*
*/
class CV_EXPORTS Pose3D
class CV_EXPORTS_W Pose3D
{
public:
Pose3D()

View File

@@ -0,0 +1,17 @@
#ifdef HAVE_OPENCV_SURFACE_MATCHING
template<> struct pyopencvVecConverter<ppf_match_3d::Pose3DPtr >
{
static bool to(PyObject* obj, std::vector<ppf_match_3d::Pose3DPtr >& value, const ArgInfo& info)
{
return pyopencv_to_generic_vec(obj, value, info);
}
static PyObject* from(const std::vector<ppf_match_3d::Pose3DPtr >& value)
{
return pyopencv_from_generic_vec(value);
}
};
typedef std::vector<ppf_match_3d::Pose3DPtr> vector_Pose3DPtr;
#endif