How can I exclude the Camera Simulator devices that are included with the 2025-3 version of VimbaX from being discovered?
I dont want to limit discovery to an interface or TL, since I cannot be sure which is used.
My current workaround is
with VmbSystem.get_instance() as vmb:
for cam in vmb.get_all_cameras():
if "Simulator" in cam.get_transport_layer().get_name(): continue
...