OpenCV: libdc1394 error: Failed to initialize libdc1394

后端 未结 2 1872
感动是毒
感动是毒 2020-12-28 20:00

I installed OpenCV correctly on Ubuntu 14.04. However, when I run: import cv2 I get this error message:

>>> import cv2
libdc1394 error         


        
2条回答
  •  醉话见心
    2020-12-28 20:26

    Maybe disabling the driver isn't the best solution, but so far this hasn't given me any problems and was the easiest way I found to solve the issue:

    sudo ln /dev/null /dev/raw1394
    

    Attention: It is not a permanent solution.

提交回复
热议问题