Thanks Laurent!

The problem was I hadn't rmmoded the pre-patched driver. Now I can use
"bayer" without getting error messages.
However, the program doesn't have change the way the capture is being done.
As I mentioned yesterday, I have a very simple opencv program (see
copy/paste below) that keeps working the same way even if I disable the
color pipeline with the program "bayer" in the background.

I know it is autoadjusting all the time because when I put my hand over the
lens and remove it, then I capture a color transition from white to the
actual image, which means (if I am correct) that it is autoadjusting...

Is this the normal behaviour? Am I missing something?

Thanks!

OpenCV prog:

int main(int argc, char* argv[])
{
       IplImage * frame = NULL;
       CvCapture *input_cam = cvCaptureFromCAM(-1);

       frame = cvQueryFrame(input_cam);

       cvNamedWindow("capture", 0);
       cvResizeWindow("capture", frame->width, frame->height);

       while(frame != NULL){
               cvShowImage("capture", frame);
               cvWaitKey(10);
               frame = cvQueryFrame(input_cam);
       }
       return 0;
}



On 1/8/07, Laurent Pinchart <[EMAIL PROTECTED]> wrote:

Hi Adrian,

> > I'd like to have a look at the USB descriptors. Could you provide me
with
> > the output of lsusb -v (usbutils 0.72 or CVS) ?
>
> I've attached the output of lsusb -v.

Thanks.

> If there's anything else I can do for you, let me know.

Feel free to send me a webcam ;-)

I had a look at the webcam USB descriptor. Implementing support for the
selector unit shouldn't be too difficult, but I have no webcam to test
this
on. I'll try to contact Creative to see if they can sponsor the project.
In
the meantime, you can expect a patch in the next few days. It might not
work
though :-)

Cheers,

Laurent Pinchart
_______________________________________________
Linux-uvc-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/linux-uvc-devel

_______________________________________________
Linux-uvc-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/linux-uvc-devel

Reply via email to