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?
|
feedback
|
|
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.
I've tested it with Logitech, Trust and Philips webcams | |||||||||||||
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Check this ticket out: https://code.ros.org/trac/opencv/ticket/376 "The solution is to use the newer libv4l-based wrapper.
This fixed it for me using Ubuntu and might aswell work for you. | |||||
feedback
|
|
I am using debian and ubuntu, i had the same problem, i couldn't change the resolution of video input using CV_CAP_PROP_FRAME_WIDTH and CV_CAP_PROP_FRAME_HEIGHT I turned out that the reason was a missing library. I installed lib4l-dev through synaptic, rebuilt OpenCV and the problem is SOLVED! | |||
|
feedback
|
|
I am posting this to ensure that no one else wastes time on this setproperty function. I spent 2 days on this to see that nothing seems to be working. So I dug out the code (I had installed the library the first time around). This is what actually happens - cvSetCaptureProperty, calls setProperty inside CvCapture class and lo behold setProperty does nothing. It just returns false. Instead I'll pick up using another library to feed OpenCV a capture video/images. I am using OpenCV 2.2 | |||
|
feedback
|
|
Try this:
| |||
|
feedback
|
|
I find that in Windows (from Win98 to WinXP SP3), OpenCV will often use Microsoft's VFW library for camera access. The problem with this is that it is often very slow (say a max of 15 FPS frame capture) and buggy (hence why cvSetCaptureProperty often doesn't work). Luckily, you can usually change the resolution in other software (particularly "AMCAP", which is a demo program that is easily available) and it will effect the resolution that OpenCV will use. For example, you can run AMCAP to set the resolution to 640x480, and then OpenCV will use that by default from that point onwards! But if you can use a different Windows camera access library such as the "videoInput" library http://muonics.net/school/spring05/videoInput/ that accesses the camera using very efficient DirectShow (part of DirectX). Or if you have a professional quality camera, then often it will come with a custom API that lets you access the camera, and you could use that for fast access with the ability to change resolution and many other things. Cheers, Shervin Emami. | |||
|
feedback
|
|
If you are on windows platform, try DirectShow (IAMStreamConfig). http://msdn.microsoft.com/en-us/library/dd319784%28v=vs.85%29.aspx | |||
|
feedback
|
|
Under Windows try to use VideoInput library: http://robocraft.ru/blog/computervision/420.html | ||||
|
feedback
|
should be just enough! | ||||
|
feedback
|
That will not work with OpenCV 2.2, but if you use OpenCV 2.1 it will work fine ! | |||
|
feedback
|