我想在 Visual Studio 2010 中使用 C# windows 应用程序显示来自 USB PC 网络摄像头的实时图像。我已经搜索并找到了链接http://channel9.msdn.com/coding4fun/articles/Look-at-me-Windows -Image-Acquisition但是当我尝试这段代码时
WIA.CommonDialog class1 = new WIA.CommonDialog();
Device d = class1.ShowSelectDevice(WiaDeviceType.UnspecifiedDeviceType, true, false);
if (d != null)
{
settings.DeviceID = d.DeviceID;
settings.Save();
}
我收到了给出的编译错误
error CS0103: The name 'settings' does not exist in the current context
而且我无法找到此错误的解决方案。谁能告诉我这个错误的解决方案是什么?还有其他最好的方法来显示来自 USB 网络摄像头的实时图像吗?
任何帮助,将不胜感激....
提前致谢..