$ python
Python 2.7.6 (default, Apr 9 2014, 11:48:52)
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/site-packages/cv.py", line 1, in <module>
from cv2.cv import *
ImportError: dlopen(/usr/local/lib/python2.7/site-packages/cv2.so, 2): Library not loaded: /usr/local/lib/libjpeg.8.dylib
Referenced from: /usr/local/Cellar/opencv/2.4.9/lib/libopencv_highgui.2.4.dylib
Reason: image not found
Library not loaded: /usr/local/lib/libjpeg.8.dylib
Il semble que / usr / local / lib / libjpeg.8.dylib
ne soit pas chargé.
Trouvez l'emplacement de libjpeg.8.dylib
$ find / -name libjpeg.8.dylib
Recollez le lien symbolique.
ln -s /usr/local/Cellar/jpeg/8d/lib/libjpeg.8.dylib /usr/local/lib/
Lorsque j'ai cherché le même article d'introduction à OpenCV, certaines personnes ont eu une erreur de lien symbolique et d'autres pas. Je suis arrivé.
Python 2.7.6 (default, Apr 9 2014, 11:48:52)
[GCC 4.2.1 Compatible Apple LLVM 5.1 (clang-503.0.38)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv
>>>
Recommended Posts