<?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>Mon, 15 Mar 2010 17:45:09 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Frame Rate settings on gspcav1]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1180</link>
			<pubDate>Mon, 15 Mar 2010 14:50:37 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1180</guid>
			<description><![CDATA[Hi everybody, I am newbie on webcams and drivers. I wanted to use my webcam on a embedded device which has usb host. I used mjpeg-streamer application with gspca. 2.6.22 version linux kernel run on my board. So I used old gspca driver from http://mxhaard.free.fr/download.html. This driver works up to v4l1 standart. I used mjpegstreamer's gspcav1 plugin and it worked well. But I need to set frame rate for cpu performance issue.<br />
<br />
I searched how I can set frame rate on v4l1 standart but I couldnt find any usable informations. May anyone has advice about this issue, or link, or clue :)<br />
<br />
Regards,<br />
<br />
mgundes]]></description>
			<content:encoded><![CDATA[Hi everybody, I am newbie on webcams and drivers. I wanted to use my webcam on a embedded device which has usb host. I used mjpeg-streamer application with gspca. 2.6.22 version linux kernel run on my board. So I used old gspca driver from http://mxhaard.free.fr/download.html. This driver works up to v4l1 standart. I used mjpegstreamer's gspcav1 plugin and it worked well. But I need to set frame rate for cpu performance issue.<br />
<br />
I searched how I can set frame rate on v4l1 standart but I couldnt find any usable informations. May anyone has advice about this issue, or link, or clue :)<br />
<br />
Regards,<br />
<br />
mgundes]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[V4L2 API and VIDIOC_S_FMT, VIDIOC_S_EXT_CTRLS]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1179</link>
			<pubDate>Mon, 15 Mar 2010 12:13:26 -0700</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1179</guid>
			<description><![CDATA[hey guys, so i am working with the v4l2 API and have been coming on an errors incessantly. i was hoping that maybe somebody could help me to explain.<br />
<br />
the first is a thing that only occurs sometimes, like 1/5, even with the same made version of the program - that may be the weirdest part. i get the error <br />
 VIDIOC_S_FMT error 5, Input/output error<br />
<br />
on the code segment<br />
<br />
Code:<br />
CLEAR (fmt);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= V4L2_BUF_TYPE_VIDEO_CAPTURE;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.width&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = image_width;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.height&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= image_height;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.field&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = V4L2_FIELD_INTERLACED;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (-1 == xioctl (fd, VIDIOC_S_FMT, &amp;fmt))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;errno_exit ("VIDIOC_S_FMT");<br />
<br />
<br />
this is part of my "init_device" function, called after opening the device. any ideas why this is going off??<br />
<br />
thanks!]]></description>
			<content:encoded><![CDATA[hey guys, so i am working with the v4l2 API and have been coming on an errors incessantly. i was hoping that maybe somebody could help me to explain.<br />
<br />
the first is a thing that only occurs sometimes, like 1/5, even with the same made version of the program - that may be the weirdest part. i get the error <br />
 VIDIOC_S_FMT error 5, Input/output error<br />
<br />
on the code segment<br />
<br />
Code:<br />
CLEAR (fmt);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.type&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= V4L2_BUF_TYPE_VIDEO_CAPTURE;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.width&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = image_width;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.height&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= image_height;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_YUYV;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fmt.fmt.pix.field&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = V4L2_FIELD_INTERLACED;<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (-1 == xioctl (fd, VIDIOC_S_FMT, &amp;fmt))&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;errno_exit ("VIDIOC_S_FMT");<br />
<br />
<br />
this is part of my "init_device" function, called after opening the device. any ideas why this is going off??<br />
<br />
thanks!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Spec for Fedora and patches]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1177</link>
			<pubDate>Fri, 12 Mar 2010 19:36:03 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1177</guid>
			<description><![CDATA[I thought I'd share my spec and patches used to build on Fedora 12. I will be looking to push the package into Fedora properly soon. These are against your latest SVN checkout (90).<br />
<br />
Attached.]]></description>
			<content:encoded><![CDATA[I thought I'd share my spec and patches used to build on Fedora 12. I will be looking to push the package into Fedora properly soon. These are against your latest SVN checkout (90).<br />
<br />
Attached.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Manual Zoom]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1176</link>
			<pubDate>Fri, 12 Mar 2010 06:20:54 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1176</guid>
			<description><![CDATA[Hello.<br />
How can I manually operate the zoom, by adding two buttons to zoom in / zoom out?<br />
Actually, i use the main properties from the device, but, i need a solution more practice.<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hello.<br />
How can I manually operate the zoom, by adding two buttons to zoom in / zoom out?<br />
Actually, i use the main properties from the device, but, i need a solution more practice.<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How does the AWB algorithm work?. Erratic behaviour.]]></title>
			<link>http://forums.quickcamteam.net/showthread.php?tid=1175</link>
			<pubDate>Thu, 11 Mar 2010 09:06:23 -0800</pubDate>
			<guid isPermaLink="false">http://forums.quickcamteam.net/showthread.php?tid=1175</guid>
			<description><![CDATA[Hello,<br />
<br />
I'm new in the forum. I've read several posts and I've found them very useful. Many thanks.<br />
<br />
At this moment I'm developing an OpenCV-based application to control an illumination system using a Logitech C600 webcam. The idea is to take snapshots with the camera to make a periodic estimation of the lighting conditions in order to self-adjust the luminic intensity and/or spectrum of the lamps. <br />
<br />
I have built a test environment with three different kinds of lamps:<br />
<br />
1. A (incandescent lamp)  -> Around 2800K<br />
2. TL84 (fluorescent lamp) -> Around 4000K<br />
3. D65 (simulates daylight) -> Around 6500K<br />
<br />
I'm trying the AWB of the camera and I've found here that the 0-10000 values that the WhiteBalance control stores could correspond with a 2800-6500K scale, which seems to be quite true, because whenever I switch on the D65 light I can read a value of 9760 for the WhiteBalance (near 10000, so near 6500K) control and if I use the incandescent lamp the reading is 230 (near 0, so near 2800K).<br />
<br />
My question is: Would it be possible to use the AWB to measure the colour temperature in a scene? How does the AWB algorithm work for this camera? The reason for this question is that problems arise when I try the TL84 light. There is uncertainty in the reading. I cannot achive the same value everytime, as I can with the other two lights. The reading shows a certain hysteresis. If I light with D65 and then I change to TL84, the reading is between 2000 and 5000. If I try firstly with A and then change to TL84, the reading doesn't achieve those values; it keeps around 1000 or less. Sometimes it even doesn't change the original 230 value. If I begin the experiment with TL84, the camera usually keeps the former value. Actually, the image looks the same even though these differences in the temperature colour exist.<br />
<br />
Another particular behaviour that I've found is the next one:<br />
<br />
- Scene without any white pixel.<br />
- AWB auto-adjusts to a temperature value I.<br />
- A white target is added to the scene.<br />
- AWB auto-adjusts to a temperature value J.<br />
- The white target is took off the scene.<br />
- AWB keeps value J.<br />
<br />
It seems that AWB follows a "best-effort" approach. It tries to shift the camera to the best possible temperature. If we "help it" a little bit, it finds the optimum and it remembers that this is effectively the best temperature while the lighting conditions don't change drastically.<br />
<br />
I'll really appreciate any suggestions. Many thanks in advance and I hope my exposition hadn't been too long and/or boring.<br />
<br />
Marcos.]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I'm new in the forum. I've read several posts and I've found them very useful. Many thanks.<br />
<br />
At this moment I'm developing an OpenCV-based application to control an illumination system using a Logitech C600 webcam. The idea is to take snapshots with the camera to make a periodic estimation of the lighting conditions in order to self-adjust the luminic intensity and/or spectrum of the lamps. <br />
<br />
I have built a test environment with three different kinds of lamps:<br />
<br />
1. A (incandescent lamp)  -> Around 2800K<br />
2. TL84 (fluorescent lamp) -> Around 4000K<br />
3. D65 (simulates daylight) -> Around 6500K<br />
<br />
I'm trying the AWB of the camera and I've found here that the 0-10000 values that the WhiteBalance control stores could correspond with a 2800-6500K scale, which seems to be quite true, because whenever I switch on the D65 light I can read a value of 9760 for the WhiteBalance (near 10000, so near 6500K) control and if I use the incandescent lamp the reading is 230 (near 0, so near 2800K).<br />
<br />
My question is: Would it be possible to use the AWB to measure the colour temperature in a scene? How does the AWB algorithm work for this camera? The reason for this question is that problems arise when I try the TL84 light. There is uncertainty in the reading. I cannot achive the same value everytime, as I can with the other two lights. The reading shows a certain hysteresis. If I light with D65 and then I change to TL84, the reading is between 2000 and 5000. If I try firstly with A and then change to TL84, the reading doesn't achieve those values; it keeps around 1000 or less. Sometimes it even doesn't change the original 230 value. If I begin the experiment with TL84, the camera usually keeps the former value. Actually, the image looks the same even though these differences in the temperature colour exist.<br />
<br />
Another particular behaviour that I've found is the next one:<br />
<br />
- Scene without any white pixel.<br />
- AWB auto-adjusts to a temperature value I.<br />
- A white target is added to the scene.<br />
- AWB auto-adjusts to a temperature value J.<br />
- The white target is took off the scene.<br />
- AWB keeps value J.<br />
<br />
It seems that AWB follows a "best-effort" approach. It tries to shift the camera to the best possible temperature. If we "help it" a little bit, it finds the optimum and it remembers that this is effectively the best temperature while the lighting conditions don't change drastically.<br />
<br />
I'll really appreciate any suggestions. Many thanks in advance and I hope my exposition hadn't been too long and/or boring.<br />
<br />
Marcos.]]></content:encoded>
		</item>
		<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>
	</channel>
</rss>