<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QuickCam Team Forums - All Forums]]></title>
		<link>http://forums.quickcamteam.net/</link>
		<description><![CDATA[QuickCam Team Forums - http://forums.quickcamteam.net]]></description>
		<pubDate>Wed, 10 Mar 2010 17:38:28 -0800</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[VIDIOC_S_EXT_CTRLS]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1174</link>
			<pubDate>Tue, 09 Mar 2010 12:16:44 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1174</guid>
			<description><![CDATA[hello, i am working with the v4l2 api and am trying to get the pan/tilt working on my logitech orbit af. there seems to be something the matter with passing small values to the pan/tilt ioctl... check out this code-<br />
<br />
<br />
Code:<br />
void<br />
pantilt (int fd, int pan, int tilt, int reset) {<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;struct v4l2_ext_control xctrls[2];<br />
&nbsp;&nbsp;&nbsp;&nbsp;struct v4l2_ext_controls ctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;ctrls.ctrl_class = V4L2_CTRL_CLASS_USER;<br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;if (reset) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;switch (reset) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 0:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PAN_RESET_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 2:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_TILT_RESET_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 3:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PANTILT_RESET_LOGITECH;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 3;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.count = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.controls = xctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;else {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PAN_RELATIVE_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = pan;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[1].id = V4L2_CID_TILT_RELATIVE_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[1].value = tilt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.count = 2;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.controls = xctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (ioctl(fd, VIDIOC_S_EXT_CTRLS, &amp;ctrls) == -1) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;perror("VIDIOC_S_EXT_CTRLS");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit(EXIT_FAILURE);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}<br />
<br />
<br />
now, when i call the function<br />
<br />
pantilt(fd, 1000, 0, 0);<br />
<br />
the camera moves, as expected. however, when i execute this segment of code:<br />
<br />
for (i=0;i]]></description>
			<content:encoded><![CDATA[hello, i am working with the v4l2 api and am trying to get the pan/tilt working on my logitech orbit af. there seems to be something the matter with passing small values to the pan/tilt ioctl... check out this code-<br />
<br />
<br />
Code:<br />
void<br />
pantilt (int fd, int pan, int tilt, int reset) {<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;struct v4l2_ext_control xctrls[2];<br />
&nbsp;&nbsp;&nbsp;&nbsp;struct v4l2_ext_controls ctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;ctrls.ctrl_class = V4L2_CTRL_CLASS_USER;<br />
 <br />
&nbsp;&nbsp;&nbsp;&nbsp;if (reset) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;switch (reset) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 0:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 1:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PAN_RESET_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 2:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_TILT_RESET_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;case 3:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PANTILT_RESET_LOGITECH;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = 3;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.count = 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.controls = xctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;else {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].id = V4L2_CID_PAN_RELATIVE_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[0].value = pan;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[1].id = V4L2_CID_TILT_RELATIVE_NEW;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xctrls[1].value = tilt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.count = 2;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ctrls.controls = xctrls;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (ioctl(fd, VIDIOC_S_EXT_CTRLS, &amp;ctrls) == -1) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;perror("VIDIOC_S_EXT_CTRLS");<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit(EXIT_FAILURE);<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
}<br />
<br />
<br />
now, when i call the function<br />
<br />
pantilt(fd, 1000, 0, 0);<br />
<br />
the camera moves, as expected. however, when i execute this segment of code:<br />
<br />
for (i=0;i]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[motion detection]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1173</link>
			<pubDate>Tue, 09 Mar 2010 06:14:12 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1173</guid>
			<description><![CDATA[Just bought a webcam pro 9000. Unfortunately I did not read the specification before my purchase and have since established from logitech that this webcam is not designed for automatic motion detection (surveillance etc) my primary reason for purchase. My previous logitech PRO 3000 was (which lasted 8 years before giving up). Anybody know if there is a way around this problem (third party software for example) without me buying yet another webcam??]]></description>
			<content:encoded><![CDATA[Just bought a webcam pro 9000. Unfortunately I did not read the specification before my purchase and have since established from logitech that this webcam is not designed for automatic motion detection (surveillance etc) my primary reason for purchase. My previous logitech PRO 3000 was (which lasted 8 years before giving up). Anybody know if there is a way around this problem (third party software for example) without me buying yet another webcam??]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[capture of a video display flow]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1172</link>
			<pubDate>Tue, 09 Mar 2010 04:42:57 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1172</guid>
			<description><![CDATA[Hello !<br />
Pbm: I have a device that shows a microscope capture through usb port device interface. I would like to capture the video flow to process the images for research purposes.<br />
<br />
I've tried several available codes with directshow that works for webcams and similar devices but they don't work because the interface device is not known.<br />
<br />
Is there a way to capture the the video flow at a certain point of the system?<br />
Any helpful suggestion is welcome<br />
Thx :)]]></description>
			<content:encoded><![CDATA[Hello !<br />
Pbm: I have a device that shows a microscope capture through usb port device interface. I would like to capture the video flow to process the images for research purposes.<br />
<br />
I've tried several available codes with directshow that works for webcams and similar devices but they don't work because the interface device is not known.<br />
<br />
Is there a way to capture the the video flow at a certain point of the system?<br />
Any helpful suggestion is welcome<br />
Thx :)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[B500 Webcam on Ubuntu 9.10]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1171</link>
			<pubDate>Mon, 08 Mar 2010 20:19:48 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1171</guid>
			<description><![CDATA[My webcam (PN 960-000559) fails to initialize on my ubuntu 9.10 OS.  It works perfectly on my other computer, which uses windows 7.  I attached the lsusb and dmesg.  Help, please.]]></description>
			<content:encoded><![CDATA[My webcam (PN 960-000559) fails to initialize on my ubuntu 9.10 OS.  It works perfectly on my other computer, which uses windows 7.  I attached the lsusb and dmesg.  Help, please.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How i can capture high quality image?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1170</link>
			<pubDate>Mon, 08 Mar 2010 06:55:14 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1170</guid>
			<description><![CDATA[Hello.<br />
I use a Orbit AF Camera and i need to capure photos in high quality. I use the SampleGrabber to obtain it.<br />
Actually, i capture in 1600*1200 with 96 ppp. The resolution it's ok, but, i need more quality in image.<br />
Can anybody help me? <br />
Thanks.]]></description>
			<content:encoded><![CDATA[Hello.<br />
I use a Orbit AF Camera and i need to capure photos in high quality. I use the SampleGrabber to obtain it.<br />
Actually, i capture in 1600*1200 with 96 ppp. The resolution it's ok, but, i need more quality in image.<br />
Can anybody help me? <br />
Thanks.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Webcam C500: UVC module fails to initialize webcam randomly in Ubuntu 9.10]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1169</link>
			<pubDate>Sun, 07 Mar 2010 23:48:58 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1169</guid>
			<description><![CDATA[Hello,<br />
<br />
I recently purchased a C500 Webcam which is UVC-compliant<br />
and after installing it in a clean installation of Ubuntu 9.10<br />
it either worked or not worked after each restart<br />
(not working more often than working).<br />
Yesterday I updated to kernel 2.6.31-20 and it hasn't worked since.<br />
The webcam is always plugged into the PC.<br />
When it's not working there is no /dev/video device present in the system.<br />
<br />
lsusb result:<br />
<br />
Code:<br />
Bus 001 Device 004: ID 046d:0807 Logitech, Inc.<br />
<br />
<br />
dmesg regarding UVC:<br />
<br />
Code:<br />
[&nbsp;&nbsp; 13.921993] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
[&nbsp;&nbsp; 13.960944] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.<br />
[&nbsp;&nbsp; 13.961435] uvcvideo: Failed to query (129) UVC probe control : -32 (exp. 26).<br />
[&nbsp;&nbsp; 13.961443] uvcvideo: Failed to initialize the device (-5).<br />
[&nbsp;&nbsp; 13.961531] usbcore: registered new interface driver uvcvideo<br />
[&nbsp;&nbsp; 13.961540] USB Video Class driver (v0.1.0)<br />
<br />
<br />
messages.log when working:<br />
<br />
Code:<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.874694] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889117] input: UVC Camera (046d:0807) as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input5<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889196] usbcore: registered new interface driver uvcvideo<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889202] USB Video Class driver (v0.1.0)<br />
<br />
<br />
messages.log when not working:<br />
<br />
Code:<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.061012] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.118623] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.120534] usbcore: registered new interface driver uvcvideo<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.120540] USB Video Class driver (v0.1.0)<br />
<br />
<br />
What should I do to make the UVC module recognize the webcam?<br />
I found a somewhat similar thread regarding a different webcam of a different maker here.<br />
However, I'd like to find a solution which doesn't require <br />
compiling the UVC module for every new kernel update.<br />
and of course I'm not sure if the trunk version will solve this problem.<br />
<br />
Thank you,<br />
-Nadav]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I recently purchased a C500 Webcam which is UVC-compliant<br />
and after installing it in a clean installation of Ubuntu 9.10<br />
it either worked or not worked after each restart<br />
(not working more often than working).<br />
Yesterday I updated to kernel 2.6.31-20 and it hasn't worked since.<br />
The webcam is always plugged into the PC.<br />
When it's not working there is no /dev/video device present in the system.<br />
<br />
lsusb result:<br />
<br />
Code:<br />
Bus 001 Device 004: ID 046d:0807 Logitech, Inc.<br />
<br />
<br />
dmesg regarding UVC:<br />
<br />
Code:<br />
[&nbsp;&nbsp; 13.921993] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
[&nbsp;&nbsp; 13.960944] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.<br />
[&nbsp;&nbsp; 13.961435] uvcvideo: Failed to query (129) UVC probe control : -32 (exp. 26).<br />
[&nbsp;&nbsp; 13.961443] uvcvideo: Failed to initialize the device (-5).<br />
[&nbsp;&nbsp; 13.961531] usbcore: registered new interface driver uvcvideo<br />
[&nbsp;&nbsp; 13.961540] USB Video Class driver (v0.1.0)<br />
<br />
<br />
messages.log when working:<br />
<br />
Code:<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.874694] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889117] input: UVC Camera (046d:0807) as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input5<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889196] usbcore: registered new interface driver uvcvideo<br />
Mar&nbsp;&nbsp;4 09:50:34 efrathome kernel: [&nbsp;&nbsp; 19.889202] USB Video Class driver (v0.1.0)<br />
<br />
<br />
messages.log when not working:<br />
<br />
Code:<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.061012] uvcvideo: Found UVC 1.00 device &lt;unnamed&gt; (046d:0807)<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.118623] uvcvideo: UVC non compliance - GET_DEF(PROBE) not supported. Enabling workaround.<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.120534] usbcore: registered new interface driver uvcvideo<br />
Mar&nbsp;&nbsp;5 20:06:23 efrathome kernel: [&nbsp;&nbsp; 20.120540] USB Video Class driver (v0.1.0)<br />
<br />
<br />
What should I do to make the UVC module recognize the webcam?<br />
I found a somewhat similar thread regarding a different webcam of a different maker here.<br />
However, I'd like to find a solution which doesn't require <br />
compiling the UVC module for every new kernel update.<br />
and of course I'm not sure if the trunk version will solve this problem.<br />
<br />
Thank you,<br />
-Nadav]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Opening Logitech Orbit from two applications]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1168</link>
			<pubDate>Sun, 07 Mar 2010 23:09:14 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1168</guid>
			<description><![CDATA[Hello,<br />
<br />
Does anybody know is it possible to open and use Logitech Orbit AF from two applications at the same time?. For instance open it from my DirectShow application, and open it from Logitech software (or skype) and record video and audio.<br />
<br />
Regards<br />
Dusan]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Does anybody know is it possible to open and use Logitech Orbit AF from two applications at the same time?. For instance open it from my DirectShow application, and open it from Logitech software (or skype) and record video and audio.<br />
<br />
Regards<br />
Dusan]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Web cam for survilliance by using java middleware]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1167</link>
			<pubDate>Thu, 04 Mar 2010 21:52:29 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1167</guid>
			<description><![CDATA[Hi,<br />
<br />
I am in initial development of R&D Project for video Security Survillance project.<br />
<br />
I have written a middle ware in Java for two Single Board computers (SBC).<br />
<br />
I want to connect webcam for boards.<br />
<br />
I will be sending commands from my middleware to invoke the functions of camera ( like, On, OFF, Zoom, Pan, Tilt etc.,)<br />
<br />
Tells me good camera in which the firmware can be used by our middleware.<br />
<br />
Thanks<br />
<br />
M. Prev Ravanth]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I am in initial development of R&D Project for video Security Survillance project.<br />
<br />
I have written a middle ware in Java for two Single Board computers (SBC).<br />
<br />
I want to connect webcam for boards.<br />
<br />
I will be sending commands from my middleware to invoke the functions of camera ( like, On, OFF, Zoom, Pan, Tilt etc.,)<br />
<br />
Tells me good camera in which the firmware can be used by our middleware.<br />
<br />
Thanks<br />
<br />
M. Prev Ravanth]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Photo Capture from Webcam]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1165</link>
			<pubDate>Thu, 04 Mar 2010 09:55:59 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1165</guid>
			<description><![CDATA[Hello.<br />
I need to capture a photo from Orbit AF Webcam.<br />
Anybody have a c# demo to do this?.<br />
Thanks a lot.]]></description>
			<content:encoded><![CDATA[Hello.<br />
I need to capture a photo from Orbit AF Webcam.<br />
Anybody have a c# demo to do this?.<br />
Thanks a lot.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Registry setting to detect if camera is plugged/unplugged]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1163</link>
			<pubDate>Thu, 04 Mar 2010 08:47:49 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1163</guid>
			<description><![CDATA[I am writing an application which needs to detect whether the camera plugged in or unplugged - this is different from it being installed, as once the software is installed and it is plugged in once, the registry keeps these settings.<br />
<br />
 <br />
<br />
I am looking to find the registry location which indicates whether the camera is plugged in the USB slot or not, DYNAMICALLY.<br />
<br />
 <br />
<br />
Any help would be greatly appreciated for this time-critical apllication.<br />
<br />
 <br />
<br />
Thank you.]]></description>
			<content:encoded><![CDATA[I am writing an application which needs to detect whether the camera plugged in or unplugged - this is different from it being installed, as once the software is installed and it is plugged in once, the registry keeps these settings.<br />
<br />
 <br />
<br />
I am looking to find the registry location which indicates whether the camera is plugged in the USB slot or not, DYNAMICALLY.<br />
<br />
 <br />
<br />
Any help would be greatly appreciated for this time-critical apllication.<br />
<br />
 <br />
<br />
Thank you.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[feature comparison WebCam PRO 9000]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1162</link>
			<pubDate>Thu, 04 Mar 2010 04:20:11 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1162</guid>
			<description><![CDATA[What is the difference between "WebCam Pro 9000" and "WebCam Pro 9000 for Business"?<br />
<br />
It is prized identically on the official Logitech Website (U.S.) but the specifications available online are slightly different. I'm especially interested in UVC compatibility and driver-less deployment (for Windows systems).<br />
<br />
http://www.logitech.com/index.cfm/webcam...3&cl=us,en<br />
<br />
http://www.logitech.com/index.cfm/for_bu...9&cl=us,en<br />
<br />
Thanks a lot for clarification,<br />
Christian.]]></description>
			<content:encoded><![CDATA[What is the difference between "WebCam Pro 9000" and "WebCam Pro 9000 for Business"?<br />
<br />
It is prized identically on the official Logitech Website (U.S.) but the specifications available online are slightly different. I'm especially interested in UVC compatibility and driver-less deployment (for Windows systems).<br />
<br />
http://www.logitech.com/index.cfm/webcam...3&cl=us,en<br />
<br />
http://www.logitech.com/index.cfm/for_bu...9&cl=us,en<br />
<br />
Thanks a lot for clarification,<br />
Christian.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[VMSystem.dll Crashed when using QuickCam Pro For Notebooks]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1161</link>
			<pubDate>Tue, 02 Mar 2010 02:45:33 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1161</guid>
			<description><![CDATA[Hi,<br />
<br />
   I am using direct show based application to access the camera. My application will be using direct show based camera capture filter to process the video captured from the camera.<br />
<br />
   When a logitech camera is in use by my application the thread from VMSystem.dll gets attached to my process and it seems to have crashed right after the graph was started. This happens only some times, because of which my application appears to have crashed to the user.<br />
<br />
  This crash has happened when using QuickCam Pro For Notebooks, on a XP PC.<br />
<br />
   Here is the extract of the crash location where the crash has been reported:<br />
<br />
EXCEPTION_ACCESS_VIOLATION in module VMSystem.dll at 001B:0740E4C7, exception offset 0000E4C7<br />
<br />
OS: Microsoft® Windows XP Professional Edition™ 5.1 Service Pack 3 Build 2600<br />
<br />
EAX=0740E4B0  EBX=00001190  ECX=00000000  EDX=00000008  ESI=001AB854<br />
EDI=0745CD20  EBP=0765FA88  ESP=0765F1FC  EIP=0740E4C7  FLG=00010202<br />
CS=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000<br />
<br />
Call stack:<br />
0765F1FC: 0765FAB0 0745CD20 0740BF58 0000046D 00000991 00000008 <br />
0765FA90: 9687FAF6 42B68BE7 5E0D17A8 73B5B39B 00000002 00000001 - 0001:0000D4C7 VMSystem.dll<br />
00000008: -------- -------- -------- -------- -------- -------- - <br />
<br />
   Let me know if more details are required.]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
   I am using direct show based application to access the camera. My application will be using direct show based camera capture filter to process the video captured from the camera.<br />
<br />
   When a logitech camera is in use by my application the thread from VMSystem.dll gets attached to my process and it seems to have crashed right after the graph was started. This happens only some times, because of which my application appears to have crashed to the user.<br />
<br />
  This crash has happened when using QuickCam Pro For Notebooks, on a XP PC.<br />
<br />
   Here is the extract of the crash location where the crash has been reported:<br />
<br />
EXCEPTION_ACCESS_VIOLATION in module VMSystem.dll at 001B:0740E4C7, exception offset 0000E4C7<br />
<br />
OS: Microsoft® Windows XP Professional Edition™ 5.1 Service Pack 3 Build 2600<br />
<br />
EAX=0740E4B0  EBX=00001190  ECX=00000000  EDX=00000008  ESI=001AB854<br />
EDI=0745CD20  EBP=0765FA88  ESP=0765F1FC  EIP=0740E4C7  FLG=00010202<br />
CS=001B   DS=0023  SS=0023  ES=0023   FS=003B  GS=0000<br />
<br />
Call stack:<br />
0765F1FC: 0765FAB0 0745CD20 0740BF58 0000046D 00000991 00000008 <br />
0765FA90: 9687FAF6 42B68BE7 5E0D17A8 73B5B39B 00000002 00000001 - 0001:0000D4C7 VMSystem.dll<br />
00000008: -------- -------- -------- -------- -------- -------- - <br />
<br />
   Let me know if more details are required.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DirectShow and noise]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1160</link>
			<pubDate>Mon, 01 Mar 2010 00:00:04 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1160</guid>
			<description><![CDATA[Hi,<br />
<br />
I use DirectShow with a Quickcam Pro 9000. When i get the frame (ISampleGrabberCB.BufferCB), the frame has some noise. If there is contrast in the scene, the frame has more noise (for example a red pen and bleu Handkerchief).<br />
<br />
I try with a Logitech C905 too. I have the same problem.<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I use DirectShow with a Quickcam Pro 9000. When i get the frame (ISampleGrabberCB.BufferCB), the frame has some noise. If there is contrast in the scene, the frame has more noise (for example a red pen and bleu Handkerchief).<br />
<br />
I try with a Logitech C905 too. I have the same problem.<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[control logitech ptz camera pan/tilt using c or c++ o]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1159</link>
			<pubDate>Thu, 25 Feb 2010 23:08:59 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1159</guid>
			<description><![CDATA[hi, i am doing a project and is sidering to use a logitech ptz camera.<br />
is there anyone who knows how can i control the built-in servo motor using c or c++. i already finished the code for face recognition, the camera can recognize human face and put a rectangle on the face. <br />
the problem is can i control the built-in servo motor of the camera so that it will automatically pan/tilt when the face is moving.<br />
<br />
thank you in advance!!]]></description>
			<content:encoded><![CDATA[hi, i am doing a project and is sidering to use a logitech ptz camera.<br />
is there anyone who knows how can i control the built-in servo motor using c or c++. i already finished the code for face recognition, the camera can recognize human face and put a rectangle on the face. <br />
the problem is can i control the built-in servo motor of the camera so that it will automatically pan/tilt when the face is moving.<br />
<br />
thank you in advance!!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Video capture from three Webcams simultaneously]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1158</link>
			<pubDate>Thu, 25 Feb 2010 21:05:03 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1158</guid>
			<description><![CDATA[Dear webcam experts-<br />
I am trying to use three Logitech Quickcam Deluxe for Notebooks in a custom rig to capture and record to hard drive, the video @ VGA resolution simultaneously. I used a third party software which allows video capture from any number of cameras. My problem is that I was only able to capture and record from all three cameras only when I set resolution at 320x240 for all three cameras. The third party software uses Directshow and not Video for windows. Is there any limitation in windows/Logitech drivers which wouldn't allow video capture simultaneously from the three cameras?<br />
<br />
Any information in this regards would be appreciated.<br />
<br />
Thanks in advance.<br />
<br />
-Kamesh]]></description>
			<content:encoded><![CDATA[Dear webcam experts-<br />
I am trying to use three Logitech Quickcam Deluxe for Notebooks in a custom rig to capture and record to hard drive, the video @ VGA resolution simultaneously. I used a third party software which allows video capture from any number of cameras. My problem is that I was only able to capture and record from all three cameras only when I set resolution at 320x240 for all three cameras. The third party software uses Directshow and not Video for windows. Is there any limitation in windows/Logitech drivers which wouldn't allow video capture simultaneously from the three cameras?<br />
<br />
Any information in this regards would be appreciated.<br />
<br />
Thanks in advance.<br />
<br />
-Kamesh]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to ask Logitech Sphere if it is still moving?]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1156</link>
			<pubDate>Thu, 25 Feb 2010 09:11:56 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1156</guid>
			<description><![CDATA[hello,<br />
<br />
Is it posible to ask Logitech Sphere (046d:0994) if it is still moving, via libwebcam or any other linux tool?<br />
<br />
thanks<br />
S.]]></description>
			<content:encoded><![CDATA[hello,<br />
<br />
Is it posible to ask Logitech Sphere (046d:0994) if it is still moving, via libwebcam or any other linux tool?<br />
<br />
thanks<br />
S.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[uvcdynctrl, error 17: File exists]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1155</link>
			<pubDate>Thu, 25 Feb 2010 09:09:36 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1155</guid>
			<description><![CDATA[hello,<br />
<br />
I have following problem with uvcdynctrl. <br />
Installed from *.deb packages.<br />
<br />
&#36; sudo uvcdynctrl-0.2.0 -d /dev/video1 -i logitech.xml <br />
[libwebcam] Unknown V4L2 private control ID encountered: 0x0A046D03 (V4L2_CID_PRIVATE_BASE + 33844483)<br />
[libwebcam] Unknown V4L2 private control ID encountered: 0x0A046D04 (V4L2_CID_PRIVATE_BASE + 33844484)<br />
Importing dynamic controls from file logitech.xml.<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2250} and selector 5. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2250} and selector 8. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d221f} and selector 1. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 3. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 1. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 2. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan (relative)' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Tilt (relative)' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Tilt Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan/tilt Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Focus' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'LED1 Mode' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'LED1 Frequency' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Disable video processing' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Raw bits per pixel' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
<br />
I'm using Ubuntu 9.10.<br />
<br />
S.]]></description>
			<content:encoded><![CDATA[hello,<br />
<br />
I have following problem with uvcdynctrl. <br />
Installed from *.deb packages.<br />
<br />
&#36; sudo uvcdynctrl-0.2.0 -d /dev/video1 -i logitech.xml <br />
[libwebcam] Unknown V4L2 private control ID encountered: 0x0A046D03 (V4L2_CID_PRIVATE_BASE + 33844483)<br />
[libwebcam] Unknown V4L2 private control ID encountered: 0x0A046D04 (V4L2_CID_PRIVATE_BASE + 33844484)<br />
Importing dynamic controls from file logitech.xml.<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2250} and selector 5. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2250} and selector 8. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d221f} and selector 1. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 3. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 1. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to add control with GUID {63610682-5070-49ab-b8cc-b3855e8d2256} and selector 2. ioctl(UVCIOC_CTRL_ADD) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan (relative)' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Tilt (relative)' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Tilt Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Pan/tilt Reset' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Focus' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'LED1 Mode' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'LED1 Frequency' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Disable video processing' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
logitech.xml: error: video1: unable to map 'Raw bits per pixel' control. ioctl(UVCIOC_CTRL_MAP) failed with return value -1 (error 17: File exists)<br />
<br />
I'm using Ubuntu 9.10.<br />
<br />
S.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Quickcam Sphere z axis control]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1154</link>
			<pubDate>Thu, 25 Feb 2010 07:46:00 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1154</guid>
			<description><![CDATA[Dear all,<br />
<br />
I am planning to use a Logitech Quickcam Sphere MP on an ARM<br />
embedded platform. I would like to control the movement along the <br />
z axis. I took a look on the sorce code of v4l2_uvc.c (uvccapture <br />
0.5 package) and I found that only pan or tilt are control are available. <br />
<br />
Is there any way to control the movement along the z axis?<br />
<br />
Thank you,<br />
Attilio]]></description>
			<content:encoded><![CDATA[Dear all,<br />
<br />
I am planning to use a Logitech Quickcam Sphere MP on an ARM<br />
embedded platform. I would like to control the movement along the <br />
z axis. I took a look on the sorce code of v4l2_uvc.c (uvccapture <br />
0.5 package) and I found that only pan or tilt are control are available. <br />
<br />
Is there any way to control the movement along the z axis?<br />
<br />
Thank you,<br />
Attilio]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[webcam recognized, no /dev/video0]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1153</link>
			<pubDate>Thu, 25 Feb 2010 05:46:31 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1153</guid>
			<description><![CDATA[Please help (if you can...)<br />
<br />
I've been looking around different forums, googling, and I cannot figure this out. I am using Logitech QuickCam and it is being recognized in Ubuntu 9.10. However, I keep getting an error that /dev/video0 is not found! How do I get it back? It worked fine just a week ago and I could see the webcam picture in Skype. I have no idea why all of a sudden it stopped working. It works under Windows XP. <br />
<br />
Here are the details:<br />
<br />
Code:<br />
:~&#36; lsusb<br />
Bus 005 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 004 Device 003: ID 046d:0870 Logitech, Inc. QuickCam Express<br />
Bus 004 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 003 Device 002: ID 046d:c018 Logitech, Inc. <br />
Bus 003 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 002 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 001 Device 001: ID 0000:0000<br />
<br />
<br />
<br />
Code:<br />
~&#36; ls -al /dev/video0<br />
ls: cannot access /dev/video0: No such file or directory<br />
<br />
<br />
<br />
Code:<br />
&#36; dmesg | tail -n 20<br />
[&nbsp;&nbsp;130.759674] NET: Registered protocol family 31<br />
[&nbsp;&nbsp;130.759676] Bluetooth: HCI device and connection manager initialized<br />
[&nbsp;&nbsp;130.759679] Bluetooth: HCI socket layer initialized<br />
[&nbsp;&nbsp;130.945419] Bluetooth: L2CAP ver 2.9<br />
[&nbsp;&nbsp;130.945423] Bluetooth: L2CAP socket layer initialized<br />
[&nbsp;&nbsp;130.949198] Bluetooth: RFCOMM socket layer initialized<br />
[&nbsp;&nbsp;130.949208] Bluetooth: RFCOMM TTY layer initialized<br />
[&nbsp;&nbsp;130.949209] Bluetooth: RFCOMM ver 1.8<br />
[&nbsp;&nbsp;132.144115] tg3: eth0: Link is up at 100 Mbps, full duplex.<br />
[&nbsp;&nbsp;132.144119] tg3: eth0: Flow control is on for TX and on for RX.<br />
[&nbsp;&nbsp;136.683159] NET: Registered protocol family 17<br />
[&nbsp;&nbsp;141.651726] NET: Registered protocol family 10<br />
[&nbsp;&nbsp;141.651924] lo: Disabled Privacy Extensions<br />
[&nbsp;&nbsp;152.022451] eth0: no IPv6 routers present<br />
[&nbsp;&nbsp;920.853238] usb 4-1: USB disconnect, address 2<br />
[&nbsp;&nbsp;926.294030] usb 4-1: new full speed USB device using uhci_hcd and address 3<br />
[&nbsp;&nbsp;926.513023] usb 4-1: configuration #1 chosen from 1 choice<br />
[&nbsp;&nbsp;926.515956] quickcam: QuickCam USB camera found (driver version QuickCam USB 0.6.6 &#36;Date: 2006/11/04 08:38:14 &#36;)<br />
[&nbsp;&nbsp;926.515960] quickcam: Kernel:2.6.24-16-generic bus:4 class:FF subclass:FF vendor:046D product:0870<br />
[&nbsp;&nbsp;926.530920] quickcam: unsupported sensor<br />
<br />
<br />
and last but not least: <br />
<br />
Code:<br />
&#36; gstreamer-properties<br />
gstreamer-properties-Message: Skipping unavailable plugin 'artsdsink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'esdsink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'sdlvideosink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'v4lmjpegsrc'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'qcamsrc'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'esdmon'<br />
gstreamer-properties-Message: Error running pipeline 'Video for Linux (v4l)': Device "/dev/video0" does not exist. [v4l_calls.c(168): gst_v4l_open (): /pipeline1/v4lsrc3]<br />
gstreamer-properties-Message: Error running pipeline 'Video for Linux 2 (v4l2)': Cannot identify device '/dev/video0'. [v4l2_calls.c(429): gst_v4l2_open (): /pipeline2/v4l2src4:<br />
system error: No such file or directory]<br />
gstreamer-properties-Message: Error running pipeline 'Custom': Cannot identify device '/dev/video0'. [v4l2_calls.c(429): gst_v4l2_open (): /pipeline3/v4l2src5:<br />
system error: No such file or directory]<br />
<br />
<br />
I would appreciate any kind of advice, as I am clueless as to how I lost /dev/video0.... Thank you in advance.]]></description>
			<content:encoded><![CDATA[Please help (if you can...)<br />
<br />
I've been looking around different forums, googling, and I cannot figure this out. I am using Logitech QuickCam and it is being recognized in Ubuntu 9.10. However, I keep getting an error that /dev/video0 is not found! How do I get it back? It worked fine just a week ago and I could see the webcam picture in Skype. I have no idea why all of a sudden it stopped working. It works under Windows XP. <br />
<br />
Here are the details:<br />
<br />
Code:<br />
:~&#36; lsusb<br />
Bus 005 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 004 Device 003: ID 046d:0870 Logitech, Inc. QuickCam Express<br />
Bus 004 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 003 Device 002: ID 046d:c018 Logitech, Inc. <br />
Bus 003 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 002 Device 001: ID 0000:0000&nbsp;&nbsp;<br />
Bus 001 Device 001: ID 0000:0000<br />
<br />
<br />
<br />
Code:<br />
~&#36; ls -al /dev/video0<br />
ls: cannot access /dev/video0: No such file or directory<br />
<br />
<br />
<br />
Code:<br />
&#36; dmesg | tail -n 20<br />
[&nbsp;&nbsp;130.759674] NET: Registered protocol family 31<br />
[&nbsp;&nbsp;130.759676] Bluetooth: HCI device and connection manager initialized<br />
[&nbsp;&nbsp;130.759679] Bluetooth: HCI socket layer initialized<br />
[&nbsp;&nbsp;130.945419] Bluetooth: L2CAP ver 2.9<br />
[&nbsp;&nbsp;130.945423] Bluetooth: L2CAP socket layer initialized<br />
[&nbsp;&nbsp;130.949198] Bluetooth: RFCOMM socket layer initialized<br />
[&nbsp;&nbsp;130.949208] Bluetooth: RFCOMM TTY layer initialized<br />
[&nbsp;&nbsp;130.949209] Bluetooth: RFCOMM ver 1.8<br />
[&nbsp;&nbsp;132.144115] tg3: eth0: Link is up at 100 Mbps, full duplex.<br />
[&nbsp;&nbsp;132.144119] tg3: eth0: Flow control is on for TX and on for RX.<br />
[&nbsp;&nbsp;136.683159] NET: Registered protocol family 17<br />
[&nbsp;&nbsp;141.651726] NET: Registered protocol family 10<br />
[&nbsp;&nbsp;141.651924] lo: Disabled Privacy Extensions<br />
[&nbsp;&nbsp;152.022451] eth0: no IPv6 routers present<br />
[&nbsp;&nbsp;920.853238] usb 4-1: USB disconnect, address 2<br />
[&nbsp;&nbsp;926.294030] usb 4-1: new full speed USB device using uhci_hcd and address 3<br />
[&nbsp;&nbsp;926.513023] usb 4-1: configuration #1 chosen from 1 choice<br />
[&nbsp;&nbsp;926.515956] quickcam: QuickCam USB camera found (driver version QuickCam USB 0.6.6 &#36;Date: 2006/11/04 08:38:14 &#36;)<br />
[&nbsp;&nbsp;926.515960] quickcam: Kernel:2.6.24-16-generic bus:4 class:FF subclass:FF vendor:046D product:0870<br />
[&nbsp;&nbsp;926.530920] quickcam: unsupported sensor<br />
<br />
<br />
and last but not least: <br />
<br />
Code:<br />
&#36; gstreamer-properties<br />
gstreamer-properties-Message: Skipping unavailable plugin 'artsdsink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'esdsink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'sdlvideosink'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'v4lmjpegsrc'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'qcamsrc'<br />
gstreamer-properties-Message: Skipping unavailable plugin 'esdmon'<br />
gstreamer-properties-Message: Error running pipeline 'Video for Linux (v4l)': Device "/dev/video0" does not exist. [v4l_calls.c(168): gst_v4l_open (): /pipeline1/v4lsrc3]<br />
gstreamer-properties-Message: Error running pipeline 'Video for Linux 2 (v4l2)': Cannot identify device '/dev/video0'. [v4l2_calls.c(429): gst_v4l2_open (): /pipeline2/v4l2src4:<br />
system error: No such file or directory]<br />
gstreamer-properties-Message: Error running pipeline 'Custom': Cannot identify device '/dev/video0'. [v4l2_calls.c(429): gst_v4l2_open (): /pipeline3/v4l2src5:<br />
system error: No such file or directory]<br />
<br />
<br />
I would appreciate any kind of advice, as I am clueless as to how I lost /dev/video0.... Thank you in advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How can I write program on C for display Webcam]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1152</link>
			<pubDate>Tue, 23 Feb 2010 11:30:13 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1152</guid>
			<description><![CDATA[Now, I have a project to use webcam for tracking thrown ball.<br />
(I use Logitech Quickcam Pro 9000)<br />
<br />
Firstly, I used C++ Language and OpenCV library to grab a frame. It is very easy. But I have a problem that is OpenCV cannot grab a frame by 30 fps. Because I have to track thrown ball then I have to use 30 fps for capturing.But OpenCV is limited at 15 fps. I cannot to find something to solve this problem.<br />
<br />
So, I think I have to grab a frame from the webcam without using OpenCV. But I don't know how to use Windows API or any library.<br />
<br />
So, I would like to ask anybody. Would anyone can give some example of code for grab a frame and display it for me?. Please help me! I cannot find the way how to fix this problem.<br />
<br />
Thank you for your advance..]]></description>
			<content:encoded><![CDATA[Now, I have a project to use webcam for tracking thrown ball.<br />
(I use Logitech Quickcam Pro 9000)<br />
<br />
Firstly, I used C++ Language and OpenCV library to grab a frame. It is very easy. But I have a problem that is OpenCV cannot grab a frame by 30 fps. Because I have to track thrown ball then I have to use 30 fps for capturing.But OpenCV is limited at 15 fps. I cannot to find something to solve this problem.<br />
<br />
So, I think I have to grab a frame from the webcam without using OpenCV. But I don't know how to use Windows API or any library.<br />
<br />
So, I would like to ask anybody. Would anyone can give some example of code for grab a frame and display it for me?. Please help me! I cannot find the way how to fix this problem.<br />
<br />
Thank you for your advance..]]></content:encoded>
		</item>
	</channel>
</rss>