-
-
Notifications
You must be signed in to change notification settings - Fork 93
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
Library does not function in Java 10 #33
Comments
It appears there are other problems, too. The |
Yes I faced that same problem when migrating to java10. I've tried to write my own OpenCV.class for a quick workaround but So I've rebuild the jar, after fixing the UnsatisfiedLinkError message and compiled it in java8 (to avoid the Another workaround I found is to use nu.pattern.OpenCV.loadLocally(); |
This is now fixed in version 3.4.2-1. |
Loading of native libraries fail in Java 10 as the format for the
UnsatisfiedLinkError
exception message has changed slightly.Instead of:
it is now:
This will cause the check here to fail:
opencv/src/main/java/nu/pattern/OpenCV.java
Line 198 in a25eb08
The text was updated successfully, but these errors were encountered: