2017-03-01 19:12:53 -0600 | asked a question | CUDA Warp Perspective - Improving Accuracy I am writing a Python program with Cython bindings to OpenCV. I am trying to substitute a Is there a way for me to improve the accuracy? I am rather sure that my Cython bindings are proper (I compared my Cython binding to OpenCV's Python binding for |
2017-02-19 01:11:19 -0600 | received badge | ● Enthusiast |
2017-02-13 02:02:26 -0600 | commented answer | Accessing Functions with Python Ctypes on .so Files So I'm better off writing my own C++ code to call any OpenCV functions I need that don't have Python bindings, and then referencing my own code with ctypes? |
2017-02-13 01:56:08 -0600 | asked a question | Accessing Functions with Python Ctypes on .so Files Hello everybody, I am trying to use Python's ctypes module to directly access functions that do not have Python bindings in OpenCV. More specifically, I want to access I was hoping that with the following Python code, I could create a handle to the CUDA-accelerated warpPerspective function: However, after encountering a I have two questions:
Thanks for helping me understand this better! |
2017-02-10 01:16:59 -0600 | received badge | ● Supporter (source) |
2017-02-10 01:16:57 -0600 | received badge | ● Scholar (source) |
2017-02-09 14:05:20 -0600 | asked a question | OpenCV CUDA Python Bindings Hello everyone, I am writing a Python-based application using OpenCV and its Aruco module for marker detection. I want to parallelize some parts of the application, and noticed that the latest OpenCV build on GitHub seems to have many of the CUDA module functions wrapped with export macros. It seems that I should be able to call this directly from my Python code, but I have not been able to do so (as far as I know). Is it still necessary at this point to use some external library to link my Python code with the OpenCV CUDA code, e.g., PyCUDA? Or am I already using the GPU implementation if I call Thanks! |