Gazebo | Ignition | Community
Ask Your Question

soooouheil's profile - activity

2017-12-28 05:32:30 -0600 received badge  Taxonomist
2015-09-24 06:29:02 -0600 received badge  Famous Question (source)
2015-09-24 06:29:02 -0600 received badge  Notable Question (source)
2015-03-11 04:03:45 -0600 received badge  Famous Question (source)
2014-12-02 19:34:33 -0600 received badge  Popular Question (source)
2014-11-25 10:32:44 -0600 asked a question How to integrate Octomap in Gazebo?

Is it possible to use an Octomap (.ot) in Gazbeo? If yes, what is the best way to do it?

2014-11-11 10:27:34 -0600 received badge  Notable Question (source)
2014-11-07 06:28:36 -0600 received badge  Popular Question (source)
2014-10-30 05:58:14 -0600 asked a question How to create wall in gazebo from a grayscale image?

Hello, as explained in the question, I'm trying to create walls in Gazbo from a grayscale image that I have. I used he Image tags in SDF :

<sdf version="1.4">
<model name="institut">
<link name="link">
<visual name="instiut">
<geometry>
<image>
<uri>model://institut/materials/map_gazebo.png</uri>
<height>2.0</height>
<scale>10.0</scale>
<threshold>250</threshold>
<granularity>1</granularity>
</image>
</geometry>
</visual>

<collision name ="coll">
<geometry>
<image>
<uri>model://institut/materials/map_gazebo.png</uri>
<height>2.0</height>
<scale>10.0</scale>
<threshold>250</threshold>
<granularity>1</granularity>
</image>
</geometry>
</collision>

</link>
</model>
</sdf>

There is no error or warning when inserting the model in Gazebo, but nothing appears. (The model name is listed in the inserted models list)

Can anyone spot an error or had anyone some experience with this? Thanks.