|
| ||||||||||
| Tags: autofocus, logitech, webcam |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Logitech Webcam C910 autofocus disabling help
|
|
#2
| |||
| |||
| Re: Logitech Webcam C910 autofocus disabling help
If that logitech webcam is a UVC compliant then with the help of DirectShow Interface IAMCameraControl you can programmatically disable the auto-focus of your webcam. A specific value can be set for the autofocus and can be set at any flags so that it doesnt works automatically. To poll current state you can use IAMCameraControl::Get since turning off the focus isnt supported by many cameras. Code: IAMCameraControl *pCameraControl;
HRESULT hr;
hr = pFilter->QueryInterface(IID_IAMCameraControl, (void **)&pCameraControl);
if (hr == S_OK) {
long defaultFocusValue; hr = pCameraControl->GetRange(CameraControl_Focus,
NULL, // min
NULL, // max
NULL, // minstep
&defaultFocusValue, // default
NULL); // capflags
hr = pCameraControl->Set(CameraControl_Focus, // property
defaultFocusValue, // value
CameraControl_Flags_Manual);
} |
|
#3
| |||
| |||
| Re: Logitech Webcam C910 autofocus disabling help
I was having a different model Logitech webcam with me and it allowed me to turn off the autofocus completely even after restaring the pc, but after upgrading the logitech software, I used to get similar problem of auto enabling of the autofocus of the webcam. So it definately means that logitech adapted some new feature in its new version of the software which shouldnt have been used. I guess by installing the older version of the logitech driver, you will be able to disable the autofocus completely, I havent tested it because I am shifted to microsoft cam now. |
|
#4
| |||
| |||
| Re: Logitech Webcam C910 autofocus disabling help
This problem was addressed on the logitech support site and even their support say that it is not possible to keep the autofocus in the disabled status even after restarting the pc. But there was a temporary fix for the Logitech Webcam Software 2.x. In the previous version of LWS, there was a process called LogiDPPApp.exe which was not present, so all you need to do is find it under the path c:\Windows\system32\ or c:\Windows\SysWOW64\ and then create a shortcut for that program or file in the path c:\Users\All Users\Microsoft\Windows\Start Menu\Programs\Startup\. So after every restart of the computer, a pop up will come on the desktop about the camera settings options, this way you can uncheck the autofocus. Till other patch comes from logitech support we will have to stick to this plan. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Logitech Webcam C910 autofocus disabling help" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Logitech HD Pro C910 Webcam record only at 15 fps | The#Gaelic | Hardware Peripherals | 5 | 17-03-2012 11:21 AM |
| Needed Logitech HD Pro Webcam C910 software for Mac | AUGUSTYNA | Hardware Peripherals | 1 | 10-02-2012 03:37 PM |
| Logitech C910 webcam not showing video on Mac Pro | Rawana | Hardware Peripherals | 5 | 24-03-2011 10:15 AM |
| Big Focus Increment on Logitech C910 webcam | The$Tourist | Hardware Peripherals | 5 | 24-03-2011 10:13 AM |
| Logitech HD Pro Webcam C910 not working with ubuntu | Charites | Hardware Peripherals | 3 | 16-11-2010 12:47 PM |