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
I wrote a small demo to use SIFT in xfeatures2d however when I built the program all other libs were loaded without problem except this one:
Caused by: java.lang.UnsatisfiedLinkError: /private/var/folders/py/wjtsvfh11xb18bcyf3l0m_rrvvk7b7/T/javacpp132060842439838/libjniopencv_xfeatures2d.dylib: dlopen(/private/var/folders/py/wjtsvfh11xb18bcyf3l0m_rrvvk7b7/T/javacpp132060842439838/libjniopencv_xfeatures2d.dylib, 1): Library not loaded: @rpath/libopencv_shape.3.0.dylib Referenced from: /private/var/folders/py/wjtsvfh11xb18bcyf3l0m_rrvvk7b7/T/javacpp132060842439838/./libopencv_xfeatures2d.3.0.dylib Reason: image not found
I am using Mac OS X and the version is 10.10.5
The text was updated successfully, but these errors were encountered:
Ok, could you please try to call Loader.load(opencv_shape.class) before using opencv_xfeatures2d and see if that works around the problem? Thanks!
Loader.load(opencv_shape.class)
opencv_xfeatures2d
Sorry, something went wrong.
it works, and I also need to call Loader.load(opencv_calib3d.class). Is it a building issue?
Hi,
The same issue rises in Scala, where it can be solved by adding:
Loader.load(classOf[opencv_shape]) Loader.load(classOf[opencv_calib3d])
I am happy to send a pull request with this fix if it helps.
* Fix loading issue with opencv_xfeatures2d (issue bytedeco/javacv…
b7e4121
…#316)
Thanks @gpostelnicu, but it's not a big deal. I've fixed it in the commit above.
Thanks for reporting @wei-hai!
Fixed in version 1.2! Aagain, thanks for reporting.
No branches or pull requests
I wrote a small demo to use SIFT in xfeatures2d however when I built the program all other libs were loaded without problem except this one:
I am using Mac OS X and the version is 10.10.5
The text was updated successfully, but these errors were encountered: