Gazebo | Ignition | Community
Ask Your Question

barcelosandre's profile - activity

2017-05-04 12:37:28 -0500 received badge  Taxonomist
2014-04-20 14:43:20 -0500 received badge  Famous Question (source)
2013-10-07 07:36:20 -0500 received badge  Notable Question (source)
2013-09-14 20:16:45 -0500 received badge  Popular Question (source)
2013-09-10 17:44:00 -0500 received badge  Editor (source)
2013-09-10 17:36:15 -0500 asked a question Not publishing Camera Info topic and I receive the follow message "WARNING: no messages received and simulated time is active. Is /clock being published?" <depthImageCameraInfoTopicName>

Hi,

I'm working with Gazebo and kinect (libgazebo_ros_openni_kinect). The camera info topic are not been published, I got the "WARNING: no messages received and simulated time is active. Is /clock being published?"

Not published topics:

<depthImageCameraInfoTopicName>
<cameraInfoTopicName>
compressedDepth

My kinect plugin have the following configuration:

<plugin name="camera" filename="libgazebo_ros_openni_kinect.so" >
  <cameraName>kinect_camera</cameraName>
  <frameName>camera_frame</frameName>
  <alwaysOn>true</alwaysOn>
  <visualize>true</visualize>
  <updateRate>20</updateRate>
  <pointCloudCutoff>0.001</pointCloudCutoff>
  <imageTopicName>/camera/rgb/image_color</imageTopicName>
  <cameraInfoTopicName>/camera/rgb/camera_info</cameraInfoTopicName>

  <depthImageTopicName>/camera/depth_registered/image</depthImageTopicName>
  <pointCloudTopicName>/camera/depth_registered/points</pointCloudTopicName>

  <depthImageCameraInfoTopicName>/camera/depth_registered/camera_info</depthImageCameraInfoTopicName>
  </plugin>
2013-09-09 17:43:06 -0500 answered a question Gazebo 1.5: libgazebo_openni_kinect.so: pointcloud data is rotated and flipped?

There is an other solution, using TF from ROS. you can publish a rotation transform to kinect_frame. An example to launch file is:

<node pkg="tf" type="static_transform_publisher" name="ime_slam_camera_tf" args="0 0 0 -1.58 0 -1.58 /pioneer3dx_gazebo/base_frame /camera/camera_frame 100"/>

2013-09-09 17:38:55 -0500 commented answer Gazebo 1.5: libgazebo_openni_kinect.so: pointcloud data is rotated and flipped?

There is an other solution, using TF from ROS. you can publish a rotation transform to kinect_frame.