I am doing a project about Mobile Robot Teleoperation which uses OpenCV for Computer Vision, but I always get error: libdc1394 error: Failed to initialize libdc1394
The reason is: There is no file /dev/raw1394 since the raw1394 driver is not loaded. So you need to insert that driver:
$ sudo modprobe raw1394
Check your permission access to that dev file:
$ ls -la /dev/raw1394
If you don’t have rw access right, need to change that permissons:
$ sudo chmod a+rw /dev/raw1394
Credit for Viktors Petrovs from this bug
Related posts:
- How To Remove Twitter Updates From Facebook? I am usually using Facebook and Twitter together, so sometimes I feel lazy to post what I am doing to both Facebook and Twitter so I was always looking for a good application which can automatically post my Twitter Updates to Facebook. Finally I was so satisfied with this Twitter application. But by time it [...]...
- How to setup Video calls in Skype on 64-bit Ubuntu system Skype is a software to make free video and voice calls, send instant messages and share files with other Skype users. You can use Skype in almost famous platforms: Windows, Linux, Mac OS and for your mobiles as well. For Linux users, you can easily download and install Skype binary package from here. With the 32-bit [...]...
- Howto Install and setup TFTPD in Ubuntu workstation I was doing my own project using TMS320DM355 EVM with MontaVista realtime Linux is installed some months ago. At that time, I search in Google many times but I didn’t get success to install TFTP. Finally, I found out one great tutorial about that. In my system, I use TFTP protocol to download Linux kernel, [...]...
- How to setup Dual Monitor in Ubuntu 9.04 with ATI Driver I am working in my Lab with 2 19′ LCD Monitors. I have search Google about this issue when I finished installing Ubuntu 9.04 and I was unable to configure to use 2 monitors. My desktop computer’s configuration: Intel(R) Core(M) 2 Quad CPU Q6600 DDR3 4GB ATI Radeon HD2600XT After I try to install ATI [...]...
- How to fix floating point in Code composer studio 3.3 I am using Code Composer 3.3 with TDS510USB Jtag Emulator on TMS320F28335, but after installing Jtag Driver, … and trying to compile one sample project, I always get warning: invalid compiler –float_support=fpu32 (ignored) and finally error at linking step: can’t find input file ‘rts2800_fpu32.lib’ Warning: Error: After searching Internet, I found out that it was [...]...
- UART Lib for PIC18 in HTPIC18 compiler I am a PIC programmer, so I would like to share this library I made before and hopy you can improve to make it better and to be perfect. This souces is made under PIC18 compiler. I have tested this lib under some chips and it works well. UART Library description and source 1. sysdef.h [...]...



{ 1 trackback }