ctypes error: libdc1394 error: Failed to initialize libdc1394

后端 未结 7 1585
攒了一身酷
攒了一身酷 2020-12-02 06:12

I\'m trying to compile my program to a shared library that I can use from within Python code using ctypes.

The library compiles fine using this command:



        
相关标签:
7条回答
  • 2020-12-02 06:39

    libdc1394 is a library for controlling camera hardware. I presume it comes the opencv you link in. Maybe the kernel driver does not load ? I guess there is a number of reasons why it can fail.

    Maybe some OpenCV expert can answer better. But I bet the problem is on OpenCV lib side.

    Some initial search for the same error message yielded results with the same reason [1, 2]. So if you can't find /dev/raw1394 on your file system try those.

    UPDATE:

    It seems like this is only a warning. The module raw1394 seems to be deprecated and some libdc1394 version might be looking for it while it disappeared with an update. Searching for it gives many results and bug reports. But it seems that the software should run fine. So if you don't really need it you can just ignore it. [3, 4]

    0 讨论(0)
提交回复
热议问题