Ask Your Question

Weibo Qiu's profile - activity

2018-11-20 12:59:54 -0600 commented question I want to convert keypoints in C++ to python

@berak vector<keypoint> kps1 = NewAlgorithm_KeypointDetector(Mat A, String B, bool C, float D, Mat E); this is m

2018-11-20 12:52:27 -0600 answered a question I want to convert keypoints in C++ to python

I saw a similar question here link text But still there is no answer for it.

2018-11-20 12:40:53 -0600 commented question I want to convert keypoints in C++ to python

@berak I know the best way is to integrate my function as OpenCV function. But then the workload is pretty much, I need

2018-11-20 11:58:46 -0600 commented question I want to convert keypoints in C++ to python

@supra56 but the return value type of the function NewAlgorithm_KeypointDetector(XXX) is vector<keypoint>

2018-11-15 11:19:26 -0600 commented question I want to convert keypoints in C++ to python

Hi berak, I'll check it tomorrow and see if it is feasible to reveal the NewAlgorithm_KeypointDetector() function. Than

2018-11-15 09:05:51 -0600 commented question I want to convert keypoints in C++ to python

But I also read how to extend new modules to Python (link text) Is it possible to use CV_WRAP to extend my NewAlgorithm

2018-11-15 08:58:54 -0600 commented question I want to convert keypoints in C++ to python

Hi berak, Thanks for your reply. But this algorithm has not been published yet and has some credential issue. So there

2018-11-15 08:56:40 -0600 commented question I want to convert keypoints in C++ to python

I also found a function "static PyObject pyopencv_cv_KeyPoint_convert(PyObject* , PyObject* args, PyObject* kw)*" in pyo

2018-11-15 08:36:39 -0600 commented question I want to convert keypoints in C++ to python

XXX are just some parameters. The function returns result as vector <keypoint> cv2 bindings building is successful

2018-11-15 07:50:29 -0600 asked a question I want to convert keypoints in C++ to python

I want to convert keypoints in C++ to python Hi, Recently, I implemented a new method about detecting keypoints in C++.