add camera plugin in gazebo
Hi, I have added camera plugin in a .urdf file but then I could not added in a launch.py file because of that image topic not published. Is my urdf file correct? And how can I added launch file to publish image topic?
<joint name="camera_joint" type="fixed">
<parent link="link_3"/>
<child link="camera_link"/>
<origin rpy="0 0 0" xyz="0 0 0.4"/>
</joint>
<gazebo reference="camera_link">
<sensor type="camera" name="camera1">
<update_rate>30.0</update_rate>
<camera name="head">
<horizontal_fov>1.3962634</horizontal_fov>
<image>
<width>800</width>
<height>800</height>
<format>R8G8B8</format>
</image>
<clip>
<near>0.02</near>
<far>300</far>
</clip>
<noise>
<type>gaussian</type>
<!-- Noise is sampled independently per pixel on each frame.
That pixel's noise value is added to each of its color
channels, which at that point lie in the range [0,1]. -->
<mean>0.0</mean>
<stddev>0.007</stddev>
</noise>
</camera>
<plugin name="camera_controller" filename="libgazebo_ros_camera.so">
<alwaysOn>true</alwaysOn>
<updateRate>0.0</updateRate>
<cameraName>robotic_arm/camera1</cameraName>
<imageTopicName>image_raw</imageTopicName>
<cameraInfoTopicName>camera_info</cameraInfoTopicName>
<frameName>camera_link</frameName>
<hackBaseline>0.07</hackBaseline>
<distortionK1>0.0</distortionK1>
<distortionK2>0.0</distortionK2>
<distortionK3>0.0</distortionK3>
<distortionT1>0.0</distortionT1>
<distortionT2>0.0</distortionT2>
</plugin>
</sensor>
</gazebo>
Hello @gurselturkeri,
Is it possible to share your code so I can have a look what's the issue? It can be either full code or git repo.
Thanks
Launch file is same as in this question: https://answers.ros.org/question/412742/controller-manager-not-available-in-ros2/
Tick the answer if you think it is right so it can help others in the community.