In my C/C++ program, I'm using OpenCV to capture images from my webcam. The camera (Logitech QuickCam IM) can capture at resolutions 320x240, 640x480 and 1280x960. But, for some strange reason, OpenCV gives me images of resolution 320x240 only. Calls to change the resolution using cvSetCaptureProperty() with other resolution values just don't work. How do I capture images with the other resolutions possible with my webcam?
|
2
|
|
|
|
|
|
There doesn't seem to be a solution. The resolution can be increased to 640x480 using this hack shared by lifebelt77. Here are the details reproduced: Add to highgui.h:
Add the function icvSetPropertyCAM_VFW to cvcap.cpp:
and edit captureCAMVFWvtable as following:
Now rebuilt highgui.dll. |
||
|
|
|
|
I've done image processing in linux before and skipped OpenCV's built in camera functionality because it's (as you've discovered) incomplete. Depending on your OS you may have more luck going straight to the hardware through normal channels as opposed to through openCV. If you are using Linux, video4linux or video4linux2 should give you relatively trivial access to USB webcams and you can use libavc1394 for firewire. Depending on the device and the quality of the example code you follow, you should be able to get the device running with the parameters you want in an hour or two. Edited to add: You are on your own if its Windows. I imagine it's not much more difficult but I've never done it. |
||
|
|
|
|
I strongly suggest using VideoInput lib, it supports any DirectShow device (even multiple devices at the same time) and is more configurable. You'll spend five minutes make it play with OpenCV. |
||
|
|
|
|
I'm using openCV 1.1pre1 under Windows (videoinput library is used by default by this version of openCv under windows). With these instructions I can set camera resolution. Note that I call the old cvCreateCameraCapture instead of cvCaptureFromCam. capture = cvCreateCameraCapture(cameraIndex); cvSetCaptureProperty( capture, CV_CAP_PROP_FRAME_WIDTH, 640 ); cvSetCaptureProperty( capture, CV_CAP_PROP_FRAME_HEIGHT, 480 ); videoFrame = cvQueryFrame(capture); I've tested it with Logitech, Trust and Philips webcams |
||||
|
|
|
I tried this solution too. But I have problemes with it. I can't find captureCAMVFWvtable in cvcap.cpp. I'm using openCV1pre1.1 too. Can anyone help me please? |
||
|
|
