-4
如何獲得使用USB(WebCams)連接到我的電腦的所有相機設備的列表,以及筆記本電腦所具備的相機內置設備。如何從我的電腦獲取相機設備列表C#
如何獲得使用USB(WebCams)連接到我的電腦的所有相機設備的列表,以及筆記本電腦所具備的相機內置設備。如何從我的電腦獲取相機設備列表C#
我這樣做過 - 使用http://directshownet.sourceforge.net/給你一個體面的.NET接口DirectShow的,那麼你可以使用下面的代碼:
DsDevice[] captureDevices;
// Get the set of directshow devices that are video inputs.
captureDevices = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice);
for (int idx = 0; idx < captureDevices.Length; idx++)
{
// Do something with the device here...
}