The Programm , i am working on, in the Moment, is to detect the Eyes from the Images of an runnig Webcam.

Now i want to detect where the Iris is, but the Resolution of the Image(-piece) is to bad, so i want to get Images from the Cam with a Higher Resolution.
At the Moment the Resolution is 320*240-->
, and i want min.640*480. ....
At the Moment i get the Frames witH:
if (AktCapture == null)
{
try
{
AktCapture = new Capture();
}
catch (NullReferenceException excpt)
{
MessageBox.Show(excpt.Message);
}
}
.......
_GetFrame = new Thread(
delegate()
{
while (true)
{
frame = AktCapture.QueryFrame();
ib_DefaultFrame.Image = frame;
}
}
);
....
how can i change the reolution ??? ... i found nothing helpfull in the other Posts...
My System:
Emgu.CV.Windows.Binary-1.4.0.0;
Prozessor Q9550;
Any Webcam (makes Resolution of 640*480) normally..
Thanks for ur Help....
