-
Notifications
You must be signed in to change notification settings - Fork 744
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
Opencv Cuda warping bug #806
Comments
I'm pretty sure we can use a |
|
The one from the core module probably doesn't support GpuMat, that's normal. Try the one from the cudawarping module. |
That is the one from cudawarping.
When changed to the code below the error goes away
Also an other thing. The videowriter gives the same error. There is a cuda videowriter but it is not exposed in Java. |
I tested the new build but could not start it. I do not know if I should report it here or in another issue. When starting I get the following error
I tried building openblas but that failed as well. |
I'm pretty sure it works, see issue #735. What does it look like with the system property "org.bytedeco.javacpp.logger.debug" set to "true"? |
With debug on I get the following
|
Looks like |
Actually that file most likely doesn't exist. The JAR files for OpenBLAS are probably just missing from the class path. If you're not using Maven, make sure you have everything it needs. |
The problem with OpenBLAS is fixed. Seems that maven didn't like to add the platform compiled jar to the classpath. The other problems with the warp functions is solved. Thanks for the quick responses. |
Hello,
After compiling opencv with cuda on my devboard I've run into a problem.
The wrapper for cuda to warp mats is wrong.
The parameters are
input(GpuMat), output(GpuMat), M(GpuMat)
It needs to be
input(GpuMat), output(GpuMat), M(Mat)
This is with the
warpAffine
andwarpPerspective
functionI do not know if it is with more cuda functions but I will update this issue if I encounter more errors
The text was updated successfully, but these errors were encountered: