You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: