I am looking to run 3 Astra 2 cameras at the same time synchronised, using the sync hub dev, daisy chain. I am looking for some advise regarding the launch file.
I am basing the launch off multi_camera_synced.launch.py
and updating the launch parameters eg:
front_camera = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(launch_file_dir, 'gemini_330_series.launch.py')
),
launch_arguments={
'camera_name': 'front_camera',
'usb_port': '2-1.1',
'device_num': '4',
'sync_mode': 'software_triggering',
'config_file_path': config_file_path,
}.items()
)
For sync_mode which is the correct selection for my setup? Also within launch parameters if I wish to change the depth_width
and depth_height
should I be adding to this file or editing the default values in astra2.launch.py
.