We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently I'm pretty sure there's some nasty memory bugs waiting to surface and a lot of unnecessary data copying going on to account for this.
We should be taking advantage of the NumpyAllocator through the pyopencv_to and pyopencv_from functions in https://github.com/opencv/opencv/blob/master/modules/python/src2/cv2.cpp.
NumpyAllocator
pyopencv_to
pyopencv_from
I'm not 100% sure how to do this, so need to do a spike first to figure out the details. A few places to draw inspiration:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently I'm pretty sure there's some nasty memory bugs waiting to surface and a lot of unnecessary data copying going on to account for this.
We should be taking advantage of the
NumpyAllocator
through thepyopencv_to
andpyopencv_from
functions in https://github.com/opencv/opencv/blob/master/modules/python/src2/cv2.cpp.I'm not 100% sure how to do this, so need to do a spike first to figure out the details. A few places to draw inspiration:
The text was updated successfully, but these errors were encountered: