I am using this code to get images from my webcam, I guess its Metricam library
Anyone knows how to get images without using picturebox?
WebCam camera = new WebCam();
camera.Connect();
pictureBox1.Image = camera.GetBitmap();
pictureBox1.Image.Save(@"c:\image1 " + ".Jpeg", ImageFormat.Jpeg);