hi, I have been working with .bag files from the intel D455 witouth any issue, but now bag files from the Intel L515 cause problems. There is noting wrong with the camera, I can run realtime analysis in python wit both D455 and L515.
When I run this code the last print statement is the one right before get_license(). If the camera L515 is plugged in as I run this code, then it prints the license, but exits at get_modules().
Here is the snipped of code that is modified to run from bag files. Note that this code works perfectly with D455 bag files and the camera doesn’t need to be plugged in.
nuitrack.set_config_value("Realsense2Module.FileRecord", path_to_bag_file)
print(path_to_bag_file)
devices = nuitrack.get_device_list()
for i, dev in enumerate(devices):
print(dev.get_name(), dev.get_serial_number())
if i == 0:
print(dev.get_activation())
nuitrack.set_device(dev)
#start nuitrack
print("getting version")
print(nuitrack.get_version())
print("getting license")
print(nuitrack.get_license())
print("getting modules")
nuitrack.create_modules()
print("prerun")
nuitrack.run()
Is there a way to make the L515 work as well as the D455?