Main repo for running camera drivers via av_camera_launch using spinnaker_camera_driver.
This repository is designed to be used alongside a Docker container. Quickly build and run the Docker container using run.sh for runtime or debugging, and dev.sh for a convenient development setup.
Execute the ROS 2 nodes in runtime mode or start an interactive bash session for detailed debugging:
./run.sh [bash]- Without arguments: Activates the container in runtime mode.
- With
bash: Opens an interactive bash session for debugging.
Prepare a development setting that reflects local code modifications and simplifies the build process:
./dev.sh- Live Code Synchronization: Mounts local
av_camera_launch,flir_camera_msgsandspinnaker_camera_driverdirectories with the container. - Convenience Alias: The development container features a
colcon_buildalias, which simplifies the ROS2 build process. Executingcolcon_buildrunscolcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=Releaseand then sources thesetup.bashto ensure the environment is updated with the latest build artifacts. This alias enhances productivity by combining build commands and environment setup into a single, easy command.