J'ai évoqué ce qui suit.
Création d'un environnement OpenCV-Python sur Raspberry Pi B +
$ sudo apt-get install libopencv-dev
$ sudo apt-get install python-opencv
$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
libdc1394 error: Failed to initialize libdc1394
Alors ...
python 2.7 - OpenCV: libdc1394 error: Failed to initialize libdc1394 - Stack Overflow
sudo ln /dev/null /dev/raw1394
Il semble que vous devriez mettre un lien dans / dev / null
comme ceci.
$ python
Python 2.7.6 (default, Jun 22 2015, 17:58:13)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.__version__
'2.4.8'
Cela signifie-t-il que le pilote d'un matériel tel que IEEE1394, c'est-à-dire Firewire, est actif?
Recommended Posts