Hi,
can somebody explain/show me how to select the camera based on the serial number (lets assume I have two Lepton cams connected to the computer) with Windows Media Foundation?
In the current implementation first the device gets selected based on the device path (which is partly identical for all Lepton cams). Retrieving the device information (like serial number) happens only later.
if (!SelectDevice()) // here the camera gets selected
{
return;
}
if (!InitializeDevice())
{
return;
}
if (!InitializeXuGuidToNodeMap()) // here I can retrieve the serial number
{
return;
}
Do I need first to open all cameras, comparing the serial number to the one I want to use and then close all the other cameras again?
Hi, can somebody explain/show me how to select the camera based on the serial number (lets assume I have two Lepton cams connected to the computer) with Windows Media Foundation?
In the current implementation first the device gets selected based on the device path (which is partly identical for all Lepton cams). Retrieving the device information (like serial number) happens only later.
Do I need first to open all cameras, comparing the serial number to the one I want to use and then close all the other cameras again?