1

I'm trying to use a firewire, sony handycam with an OpenCV application. I believe I need to download another driver but CMU 1394 driver that integrates firewire cameras seems to be only compatible with windows. Is there soemthign I can use for a mac to make my camera open with

   CvCapture*capture=0;
    capture=cvCaptureFromCAM(0); 
user2645586
  • 71
  • 13
  • Are you able to use the camera with any other program? Try with any; if you were using GNU/Linux I'd suggest Coriander. If you can't, then there is some problem with the driver. I don't know if this holds for Mac, but in GNU/Linux, a typical problem is that you need to add permissions to /dev/raw1394 and /dev/ieee1394. – ChronoTrigger Sep 04 '13 at 08:40
  • Yes I've tried it with an Openframeworks application, just can't seem to get it to work with OpenCV – user2645586 Sep 04 '13 at 12:24
  • I don't think it will help, but you may try to use different API - see ma answer here: http://stackoverflow.com/questions/14187866/opencv-on-mac-not-opening-usb-web-camera/14188280#14188280 – cyriel Sep 04 '13 at 15:14

1 Answers1

0

I had a similar problem.

Changing permissions to /dev/raw1394 and /dev/ieee1394 worked for me (testing a Prosilica EC with Ubuntu Lucid).

david
  • 1
  • I am having same issue on Mac, can you tell me how to change these permissions please? Thanks – kthouz Nov 15 '16 at 22:59