0
What does it here C#
private FilterInfoCollection webcame; private VideoCaptureDevice came; private void Form1_Load(object sender, EventArgs e) { webcame = new FilterInfoCollection(FilterCategory.VideoInputDevice); foreach (FilterInfo VideoCaptureDevice in webcame) { comboBox1.Items.Add(VideoCaptureDevice.Name);
3 Answers
+ 4
You keep asking this question and every time someone answers you, you reply by continuing to ask a question that makes no sense..
What is it specifically that you want to know about this ?
All it does from what I can see, is it's adding video device names that are on your device to a list.
PS: can you remove all that white space to make it easier for the reader?
+ 3
please tell us what you want to Know on this code ... don't post it again and again
0
i want create app for run on the video camera
but i can not unerstand what he does here