我正在使用 EmguCV 的课程Capture
从网络摄像头拍摄图像。
根据该类的文档(http://www.emgu.com/wiki/files/2.0.0.0/html/18b6eba7-f18b-fa87-8bf2-2acff68988cb.htm),Capture有 3 个构造函数。
使用public Capture()
它应该使用默认相机并且它可以正常工作。
正如我在其中一个示例中看到的那样,似乎
public Capture(string fileName) //takes a video file as the source for the captures.
最后一个构造函数是
public Capture(int camIndex) //which is supposed to "Create a capture using the specific camera"
我尝试使用最后一个构造函数来允许用户选择设备,以防他有多个摄像头(例如,笔记本电脑中的集成摄像头或插入的 USB 摄像头)
我的问题是我不知道如何获取可用设备的列表。尝试创建索引从 0 到 99 的捕获,并尝试抓取预期异常的帧,但它只使用 100 个捕获的黑色图像。另外,当我使用默认相机时,我不知道如何获取他的索引。
有什么帮助吗?
编辑:根据Shiva的答案中的信息,我得到了它(我将其发布以供将来参考):
private void onLoad(object sender, RoutedEventArgs e)
{
//Add the image processing to the dispatcher
this.Dispatcher.Hooks.DispatcherInactive += new EventHandler(dispatcherTimer_Tick);
//Get the information about the installed cameras and add the combobox items
DsDevice[] _SystemCamereas = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice);
Video_Device[] WebCams = new Video_Device[_SystemCamereas.Length];
for (int i = 0; i < _SystemCamereas.Length; i++)
{
WebCams[i] = new Video_Device(i, _SystemCamereas[i].Name, _SystemCamereas[i].ClassID); //fill web cam array
ComboBoxDevices.Items.Add(WebCams[i].ToString());
}
}
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
if (capture != null)
{
//Capture an image
Image<Bgr, byte> img = capture.QueryFrame();
//Show the image in the window
ImageOriginal.Source = ImageProcessor.ToBitmapSource(img);
}
}
private void ComboBoxDevices_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
//If there is already a capture, dispose it
if (capture != null)
{
capture.Dispose();
}
//Get the selected camera
int selectedDevice = ComboBoxDevices.SelectedIndex;
try
{
//Create new capture with the selected camera
capture = new Capture(selectedDevice);
}
catch (Exception excpt)
{
MessageBox.Show(excpt.Message);
}
}