Inserted model changes it's pose automatically
Hello, I want to demonstrate pick and place in gazebo. For that i have created warehouse environment in gazebo.
I have converted 3D point clouds to meshes with the help of Meshlab and added the .dae mesh in Gazebo. I initially added the object to the gazebo and then saved the world as .sdf file and then i used previously saved world file to launch gazebo. In below image the white box you see is the object i want to pick.
The problem is : When i launch gazebo and spawn the objects into it, the object changes it's pose automatically, I fetch the pose of the object by making a service call to gazebo/get_model_states and feed this pose to my pick place script. As object changes their position when i try to pick the object robot collides with the object.
I have already tried to use gazebo_msgs/set_model_pose service call to reset the object position after launching gazebo. Even after resetting position object change their position till the time robot reaches to grasp it.
Can anyone tell how to make object stationary without making them static??
Below is my model.sdf file for reference
<?xml version="1.0" ?>
<sdf version="1.5">
<model name="kaffee">
<link name="link">
<inertial>
<pose>0 0 0.0175 0 0 0</pose>
<mass>0.3</mass>
<inertia>
<ixx>0.000234852</ixx>
<ixy>0.0</ixy>
<ixz>0.0</ixz>
<iyy>0.000077182</iyy>
<iyz>0.0</iyz>
<izz>0.000273415</izz>
</inertia>
</inertial>
<collision name="collision">
<geometry>
<mesh>
<uri>model://kaffee/meshes/kaffee.dae</uri>
</mesh>
</geometry>
</collision>
<visual name="visual">
<geometry>
<mesh>
<uri>model://kaffee/meshes/kaffee.dae</uri>
</mesh>
</geometry>
</visual>
</link>
</model>
</sdf>