how to create object in icub simulator using python language ? #591
-
I am a masters student working on visual smooth pursuit of icub robot ,I am unable to create object by using python in icub simulator and want to create it and make it move in front of icub eyes so that i can use it in my experiment by using python ,kindly help in this regards by some working example,Thanks . |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hy @hamaduddin For our official simulator based on Gazebo, you could get an idea of how to spawn a sphere by inspecting this tutorial: https://github.com/vvv-school/tutorial_gaze-interface. Some details:
Yes, it's a C++ codebase (and you should learn/use C++ for doing real robotics 😉), but I found convenient Python bindings to interact w/ Gazebo: check out https://pypi.org/project/pygazebo. You may peruse it. Instead, if you're referring to our old The instructions are based on the YARP plumbing, so following these examples should suffice. |
Beta Was this translation helpful? Give feedback.
Hy @hamaduddin
For our official simulator based on Gazebo, you could get an idea of how to spawn a sphere by inspecting this tutorial: https://github.com/vvv-school/tutorial_gaze-interface.
Some details:
Yes, it's a C++ codebase (and you should learn/use C++ for doing real robotics 😉), but I found convenient Python bindings to interact w/ Gazebo: check out https://pypi.org/project/pygazebo. You may peruse it.
Instead, if you're ref…