up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to get images from a minoru3d webcam, which is actually two Vimicro webcams plus a USB hub in a single package. The problem is, opencv always takes streams in maximum resolution, making simultaneous capture from two webcams impossible(due to usb constraints). How do I set resolution or FPS? For some reason, opencv calls

cvSetCaptureProperty( capture, CV_CAP_PROP_FRAME_WIDTH, 320 );
cvSetCaptureProperty( capture, CV_CAP_PROP_FRAME_HEIGHT, 240 );

don't work. I don't need to work with opencv, any other library doing the same job is good for me. The webcam uses uvc drivers from kernel 2.6.30, with v4l2. I tried the custom module here: http://linuxtv.org/hg/~pinchartl/uvcvideo on my Ubuntu box with 2.6.27 kernel.

link|improve this question

1  
Have you read this thread? stackoverflow.com/questions/14287/… You could also try setting the resolution with v4l2-ctl. – ChristopheD Aug 11 '09 at 10:31
You could also try posting on superuser.com – kazanaki Aug 3 '10 at 13:19
feedback

1 Answer

up vote 0 down vote accepted

I used luvcview and v4l2cam for my purposes. 2 is specifically written for the Minoru.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.