help me to do use webcam for capture Image
i could not able to get solution for it
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manoj Kumar DuraisamyPosted Dec 28, 2016, 6:48 AM
Mohamed AbedallahPosted Dec 8, 2016, 10:40 AM
/*************************************/
Leadtools.Multimedia.CaptureCtrl captureCtrl1;
captureCtrl1 = new Leadtools.Multimedia.CaptureCtrl();
//Select the video devices.
captureCtrl1.VideoDevices[0].Selected = true;
//Enable preview.
captureCtrl1.Preview = true;
//Set the cpture mode to Still.
captureCtrl1.StartCapture(Leadtools.Multimedia.CaptureMode.Still);
//Get the image from capture device.
pictureBox1.Image = captureCtrl1.GetStillImage(500);
/*************************************/
Disclaimer: I work for the company that created this library.
Guest UserPosted Nov 5, 2016, 12:54 AM
Webcam file save demonstration
Salman BegPosted Nov 4, 2016, 10:12 AM