Adding Camera Plugin to Gazebo Garden

Hello,

I am trying to add a camera plugin to gazebo garden. which ROS distro is better to use? Are there any github repository for this?

the world I used:

The Gazebo models in SITL_Models are independent of ROS. We support Gazebo Garden and Harmonic. Ionic should also work, but is not tested.

If you are using ROS 2 / DDS with ArduPilot then ROS 2 Humble is the supported version.

The details are in the wiki and repo READMEs: ROS 2 — Dev documentation

A 3 DoF gimbal and camera are included in the iris model in ardupilot_gazebo. The same approach may be used to attach the camera to the mini-talon or any other model.

1 Like

Hey @rhys, thanks for your guide,

I installed succesfully until last step, in the last step I get screen freeze (same topic:Colcon build --packages-up-to ardupilot_gz_bringup screen freeze - #3 by shemshamerr) I use 22.04 ubuntu. I have 16gb ram, 45 gb available space and ryzen7 7860 processor. I didn’t create a swap area during ubuntu installation. Any help would be great for me, thanks

Got it, I needed to create swap area

here is the code for 16gb swap area:

sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show