-
Notifications
You must be signed in to change notification settings - Fork 850
New issue
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
How to convert cv2.Mat() to cv2.UMat() #1030
Comments
use
it works for me in OpcnCV 3.4.18. |
For project reasons, it seems I can't use another version of opencv, but still thanks so much for your reply. my environment is as follows: The environment is Windows 11 version
|
You can use |
I tried it, but mat doesn't have the method getUMat, the error message as below:
|
Hello, I am trying to write some glue code for a third-party library.
In the code, I need to return a data of type
cv2.UMat
.Now I can use
cv2.Mat(descs)
to get aMat
, but I can't find a way to convertcv2.Mat
tocv2.UMat
.I tried
umat = cv.UMat(mat)
,mat.copyTo(umat)
,umat = cv.UMat(descs.shape[0], descs.shape[1], descs.dtype, cv.USAGE_DEFAULT)
, but none of them worked.I found on the Internet that there seems to be such a method in C to convert
Mat
toUMat
, but I can't seem to find it in Python.Can you give some suggestions?
The text was updated successfully, but these errors were encountered: