Gazebo | Ignition | Community
Ask Your Question

malhar's profile - activity

2019-04-30 09:51:39 -0500 received badge  Famous Question (source)
2019-04-30 09:51:39 -0500 received badge  Notable Question (source)
2019-04-30 09:51:39 -0500 received badge  Popular Question (source)
2018-07-09 15:52:47 -0500 received badge  Famous Question (source)
2018-05-15 06:36:24 -0500 received badge  Famous Question (source)
2018-05-12 22:07:50 -0500 received badge  Popular Question (source)
2018-05-12 22:07:50 -0500 received badge  Notable Question (source)
2018-04-16 04:27:12 -0500 received badge  Famous Question (source)
2018-04-16 02:05:59 -0500 received badge  Self-Learner (source)
2018-04-12 01:55:37 -0500 received badge  Notable Question (source)
2018-04-10 16:47:46 -0500 commented answer Change (display) representation of orientation of model.

Hi, thanks for confirming.

2018-04-10 16:47:35 -0500 marked best answer Change (display) representation of orientation of model.

Hi,

Currently Gazebo displays ( in the left panel as shown below ) the orientation ( Roll , Pitch and Yaw ) of a model in radians. Please see image if required.

image description

I have a few related questions -

  • Is it possibe to convert the Roll pitch and yaw to degrees (Mainly for convenience) ?
  • Is it possible to change the representation to a quaternion ( q_x, q_y, q_z, q_w ) ?

Thanks!

2018-04-10 16:47:26 -0500 commented answer Change (display) representation of orientation of model.

Hi, thanks for confirming.

2018-04-10 16:47:26 -0500 received badge  Commentator
2018-04-10 14:12:17 -0500 received badge  Popular Question (source)
2018-04-10 08:43:46 -0500 received badge  Self-Learner (source)
2018-04-10 08:43:46 -0500 received badge  Teacher (source)
2018-04-10 06:44:32 -0500 edited answer Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Hi, While @smorad's answer helped , the mentioned topic (/gazebo/model_states) did not provide timing values. Also it p

2018-04-10 06:44:08 -0500 marked best answer Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Hi,

I am currently working on a drone related project and using gazebo for simulation

In order to measure accuracy of my localisation, I need to know the ground truth values. Is there some way in Gazebo to continuously track/store the actual/true/ground truth 6D pose, ie the rotation and translation w.r.t. to a fixed frame like the world frame.

I wish to create something like the following -

image description

Thanks a lot !

2018-04-10 06:43:53 -0500 answered a question Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Hi, While @smorad's answer helped , the mentioned topic (/gazebo/model_states) did not provide timing values. Also it p

2018-04-10 06:39:29 -0500 commented answer Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Hi yes I am using Gazebo + ROS , but I needed a topic that provides both - the ground truth and timing values.

2018-04-10 03:56:29 -0500 received badge  Notable Question (source)
2018-04-09 16:32:04 -0500 commented answer Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Should I try using the /ground_truth/state topic instead ?

2018-04-09 16:22:34 -0500 commented answer Continuously Tracking and storing 6D pose of an object in Gazebo simulation.

Hi, I tried using it and it's almost what I want but unfortunately I've run into an issue. The topic does not have any t

2018-04-09 15:24:41 -0500 edited answer Kinect (in gazebo) not publishing topics

I found the solution by some trial and error. Update: What I did - Go to folder ~/.gazebo/models Make a copy of the

2018-04-09 15:23:55 -0500 edited answer Kinect (in gazebo) not publishing topics

I found the solution by some trial and error. Update: What I did - Go to folder ~/.gazebo/models Make a copy of the

2018-04-09 15:22:45 -0500 edited answer Kinect (in gazebo) not publishing topics

I found the solution by some trial and error. Update: What I did - Go to folder ~/.gazebo/models Make a copy of the

2018-04-09 15:22:05 -0500 edited answer Kinect (in gazebo) not publishing topics

I found the solution by some trial and error. Update: What I did - Go to folder ~/.gazebo/models Make a copy of the

2018-04-09 15:21:00 -0500 marked best answer Kinect (in gazebo) not publishing topics

Hi,

Update:

I have also tried rosrun gazebo --verbose and I get a warning - [Wrn] [msgs.cc:1655] Conversion of sensor type[depth] not suppported. I believe this may be due to <sensor name="camera" type="depth"> in XML below.

Question: I have been following this tutorial to simulate a Kinect in Gazebo and then publish image,pointcloud etc to ROS topics. However, rostopic list does not show the required topics in the output.

I have also looked at the following questions on this forum - this and this. The issue in the first one seems to be same as mine. The person suggested to use URDF files instead (which I will try but would still like to know why below approach is not working ).

Here is the relevant XML code for the model.sdf file in the kinect directory that I have modified according to the tutorial mentioned above -

  //some xml 

  <sensor name="camera" type="depth">
                    <alwaysOn>true</alwaysOn>
            <update_rate>20</update_rate>
            <camera>
              <horizontal_fov>1.047198</horizontal_fov>
              <image>
                <width>640</width>
                <height>480</height>
                <format>R8G8B8</format>
              </image>
              <clip>
                <near>0.05</near>
                <far>3</far>
              </clip>
            </camera>
                <plugin name="camera_plugin" filename="libgazebo_ros_openni_kinect.so">
              <baseline>0.2</baseline>
              <alwaysOn>true</alwaysOn>
              <!-- Keep this zero, update_rate in the parent <sensor> tag
                will control the frame rate. -->
              <updateRate>0.0</updateRate>
              <cameraName>camera_ir</cameraName>
              <imageTopicName>/camera/depth/image_raw</imageTopicName>
              <cameraInfoTopicName>/camera/depth/camera_info</cameraInfoTopicName>
              <depthImageTopicName>/camera/depth/image_raw</depthImageTopicName>
              <depthImageInfoTopicName>/camera/depth/camera_info</depthImageInfoTopicName>
              <pointCloudTopicName>/camera/depth/points</pointCloudTopicName>
              <frameName>camera_link</frameName>
              <pointCloudCutoff>0.05</pointCloudCutoff>
              <distortionK1>0</distortionK1>
              <distortionK2>0</distortionK2>
              <distortionK3>0</distortionK3>
              <distortionT1>0</distortionT1>
              <distortionT2>0</distortionT2>
              <CxPrime>0</CxPrime>
              <Cx>0</Cx>
              <Cy>0</Cy>
              <focalLength>0</focalLength>
              <hackBaseline>0</hackBaseline>
            </plugin>
    </sensor>

   // some more xml

I would like to mention the following -

  1. Note that in the XML code - The plugin is defined as a sensor plugin (I am aware that model and sensor plugins are different things in Gazebo and it can lead to an error if the right one is not used.)

  2. I have been using the command - roslaunch gazebo_ros empty_world.launch to open the world.I then manually add the kinect model shown above.

  3. I have also tried rosrun gazebo --verbose and I get a warning - [Wrn] [msgs.cc:1655] Conversion of sensor type[depth] not suppported.

  4. Also, output of rostopic list after launching gazebo and adding the kinect ( Sorry unable to format this as code for some reason ) -

    /clock /gazebo/link_states /gazebo/model_states /gazebo/parameter_descriptions /gazebo/parameter_updates /gazebo/set_link_state /gazebo/set_model_state /rosout /rosout_agg

  5. I have checked rostopic echo /clock , which means the Gazebo simulation is running. o I need to install that plugin libgazebo_ros_openni_kinect.so ? This seems more like an issue on the Gazebo side and hence I have posted here ( instead of ROS forum. )

Thanks a lot !