using opencv gpu functions in python

asked 2014-06-26 05:55:12 -0600

Adnane gravatar image

Hi,

Is there a way to use gpu functions in python? I am mainly interested in keypoints descriptors.

Thank you.

edit retag flag offensive close merge delete

Comments

1

As far as I know, there is not. I've been using OpenCV 3 in Python for a while now, but I had to switch to C++ to get at the CUDA functions. There is no Python API documentation for the CUDA functions, and the fact that cv2.cpp (the file that defines the Python API) doesn't import any of the CUDA-related headers further suggests to me that these functions are not available in Python.

hunse gravatar imagehunse ( 2014-06-26 13:20:58 -0600 )edit