ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

igoliao's profile - activity

2020-06-01 05:56:27 -0500 received badge  Taxonomist
2020-02-04 11:18:02 -0500 received badge  Good Question (source)
2018-09-05 09:28:42 -0500 received badge  Nice Question (source)
2013-09-03 22:37:28 -0500 received badge  Famous Question (source)
2012-12-09 21:12:00 -0500 received badge  Notable Question (source)
2012-11-25 06:22:34 -0500 received badge  Popular Question (source)
2012-11-08 22:59:54 -0500 asked a question gazebo dae error

I have export a 3DMAX's model to dae file, then I insert it into the gazebo worlds, but some error occurs. it seems that 3DMAX's dae file is error, anyone have ideas about this probem? thould I change some settings in 3DMAX when export dae files?

the excpetion the gazebo throw: spawn status: SpawnModel: successfully spawned model Error [Visual.cc:1454] Visual::InsertMesh no submeshes, this is an invalid mesh Error [Visual.cc:360] Ogre Error:OGRE EXCEPTION(2:InvalidParametersException): Header chunk didn't match either endian: Corrupted stream? in Serializer::determineEndianness at /tmp/buildd/ros-fuerte-visualization-common-1.8.4/debian/ros-fuerte-visualization-common/opt/ros/fuerte/stacks/visualization_common/ogre/build/ogre_src_v1-7-3/OgreMain/src/OgreSerializer.cpp (line 89) Exception [Visual.cc:361] Unable to create a mesh from sofa.dae

2012-10-01 17:52:56 -0500 received badge  Famous Question (source)
2012-09-05 02:35:53 -0500 received badge  Famous Question (source)
2012-09-05 02:35:53 -0500 received badge  Popular Question (source)
2012-09-05 02:35:53 -0500 received badge  Notable Question (source)
2012-08-23 16:18:09 -0500 received badge  Popular Question (source)
2012-08-23 16:18:09 -0500 received badge  Notable Question (source)
2012-08-23 16:18:09 -0500 received badge  Famous Question (source)
2012-08-15 07:13:55 -0500 received badge  Notable Question (source)
2012-08-15 07:13:55 -0500 received badge  Popular Question (source)
2012-07-06 20:41:17 -0500 asked a question omnidirectional camera in gazebo

Hello, I want simulate my robot in the gazebo, but I can't find omnidirectional camera in the gazebo,my carmera is like this. Do you have idea about this?

image description

2012-06-15 16:57:59 -0500 commented answer Converting SolidWorks STL files into urdf file

Yeah, it really works, thank you very much!

2012-06-15 05:01:33 -0500 received badge  Student (source)
2012-06-15 04:48:33 -0500 asked a question Converting SolidWorks STL files into urdf file

I have the solidworks stl file of my robot, but how can I convert it into urdf file? I have tried simmechanics_to_urdf, but it seems don't work at all. For example, the stl file is test.stl (asscii), which pkg and node can do this job. Thank you.

2012-06-03 22:18:43 -0500 received badge  Editor (source)
2012-06-03 22:15:41 -0500 asked a question how can I build probability maps with gmapping

I want build probability maps, but I find that gmapping can only generate maps with 3 values (unknown, free and obstacle). How can gmapping work with probablility maps. Thank you. Further, I change source code, but it doesn't work too.

the code I changed is below: if(occ < 0) map_.map.data[MAP_IDX(map_.map.info.width, x, y)] = -1; else map_.map.data[MAP_IDX(map_.map.info.width, x, y)] = (int)round(occ*100.0);