Calling third-party Python modules installed with homebrew from Matlab?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dylan Brown
le 27 Juin 2015
Commenté : Dylan Brown
le 28 Juin 2015
I've installed the OpenCV library for Python using homebrew. I've successfully used it within Python for weeks, but now I'd like to attempt calling OpenCV functions from Matlab. Currently I'm able to call built-in libraries without issue, but not third-party modules. How can I get this working? Thanks!
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/151651/image.png)
1 commentaire
the cyclist
le 27 Juin 2015
Leaving this comment only so I can easily find this question again. Several months ago, I did some of this exploration, and I think I ended up achieving only what you have.
Réponse acceptée
Robert Snoeberger
le 28 Juin 2015
Use the import_module function from importlib when you want more information about an import failure. If import fails, then you will get the Python exception. The exception will give you more information about the cause of the failure.
I can reproduce the import failure:
>> py.importlib.import_module('cv2')
Python Error: dlopen(/usr/local/Cellar/opencv3/3.0.0/lib/python2.7/site-packages/cv2.so, 2): Library not loaded:
/usr/local/lib/libtiff.5.dylib
Referenced from: /usr/local/Cellar/opencv3/3.0.0/lib/libopencv_imgcodecs.3.0.dylib
Reason: Incompatible library version: libopencv_imgcodecs.3.0.dylib requires version 8.0.0 or later, but libtiff.5.dylib provides
version 6.0.0
>>
As you can see in the error message, the cause of the failure is an incompatible library version. The library that is causing the problem is libtiff.5.dylib. I have two versions of the library, 1) a version located at /usr/local/lib/libtiff.5.dylib that Python normally uses and 2) another version located at /Applications/MATLAB_R2014b.app/bin/maci64/libtiff.5.dylib that MATLAB uses. When you call opencv functions from MATLAB, the MATLAB version of the library is picked up and it is incompatible.
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!