Should you’ve been topic to my posts on Twitter or LinkedIn, you might have seen that I’ve accomplished no writing within the final 6 months. In addition to the entire… full-time job factor … that is additionally as a result of at first of the 12 months I made a decision to concentrate on a bigger coding challenge.
At my earlier job, I stood up a system for job and movement planning (TAMP) utilizing the Toyota Human Assist Robotic (HSR). You may study extra in my 2020 recap put up. Whereas I’m definitely capable of discuss that work, the code itself was closed in two alternative ways:
- Analysis collaborations with Toyota Analysis Institute (TRI) pertaining to the HSR are in a closed group, except for some publicly obtainable repositories constructed across the RoboCup@House Home Customary Platform League (DSPL).
- The code not particular to the robotic itself was contained in a non-public repository in my former group’s group, and moreover is embedded in a large monorepo.

Rewind to 2020: The unique simulation device (left) and a generated Gazebo world with a Toyota HSR (proper).
So I assumed, there are some generic utilities right here that might be helpful to the group. What would it not take to strip out the house service robotics simulation instruments out of that setting and make it obtainable as a standalone bundle? Additionally, how may I squeeze in enhancements and study attention-grabbing issues alongside the way in which?
This put up describes how these utilities turned pyrobosim: A ROS2 enabled 2D cell robotic simulator for conduct prototyping.
What’s pyrobosim?
At its core, pyrobosim is an easy robotic conduct simulator tailor-made for family environments, however helpful to different functions with comparable assumptions: transferring, choosing, and inserting objects in a 2.5D* world.
* For these unfamiliar, 2.5D usually describes a 2D surroundings with restricted entry to a 3rd dimension. Within the case of pyrobosim, this implies all navigation occurs in a 2D airplane, however manipulation duties happen at a particular top above the bottom airplane.
The meant workflow is:
- Use pyrobosim to construct a world and prototype your conduct
- Generate a Gazebo world and run with a higher-fidelity robotic mannequin
- Run on the actual robotic!
Pyrobosim lets you outline worlds made up of entities. These are:
- Robots: Programmable brokers that may act on the world to vary its state.
- Rooms: Polygonal areas that the robotic can navigate, linked by Hallways.
- Places: Polygonal areas that the robotic can’t drive into, however could include manipulable objects. Places include one among extra Object Spawns. This permits having a number of object spawns in a single entity (for instance, a left and proper countertop).
- Objects: The issues that the robotic can transfer to vary the state of the world.

Primary entity sorts proven in a pyrobosim world.
Given a static set of rooms, hallways, and areas, a robotic on this planet can then take actions to vary the state of the world. The primary 3 actions carried out are:
- Choose: Take away an object from a location and maintain it.
- Place: Put a held object at a particular location and pose inside that location.
- Navigate: Plan and execute a path to maneuver the robotic from one pose to a different.
As that is primarily a cell robotic simulator, there may be extra concentrate on navigation vs. manipulation options. Whereas choosing and inserting are idealized, which is why we are able to get away with a 2.5D world illustration, the concept is that the trail planners and path followers will be swapped out to check completely different navigation capabilities.
One other long-term imaginative and prescient for this device is that the set of actions itself will be expanded. Some random concepts embrace transferring furnishings, opening and shutting doorways, or gaining info in partially observable worlds (for instance, an specific “scan” motion).
Independently of the listing of doable actions and their parameters, these actions can then be sequenced right into a plan. This plan will be manually specified (“go to A”, “decide up B”, and so forth.) or the output of a higher-level job planner which takes in a job specification and outputs a plan that satisfies the specification.

Execution of a pattern motion sequence in pyrobosim.
In abstract: pyrobosim is a software program device the place you may transfer an idealized level robotic round a world, decide and place objects, and take a look at job and movement planners earlier than transferring into higher-fidelity settings — whether or not it’s different simulators or an actual robotic.
What’s new?
Taking this code out of its authentic resting spot was removed from a copy-paste train. Whereas sifting by way of the code, I made a couple of enhancements and design modifications with modularity in thoughts: ROS vs. no ROS, GUI vs. no GUI, world vs. robotic capabilities, and so forth. I additionally added new options with the egocentric agenda of studying issues I needed to attempt… which is the purpose of a enjoyable private aspect challenge, proper?
Let’s dive into a couple of key thrusts that made up this preliminary launch of pyrobosim.
1. Person expertise
The unique device was intently tied to a single Matplotlib determine window that had to be open, and typically there have been a lot of shortcuts to simply get the factor to work. On this redesign, I attempted to extra cleanly separate the modeling from the visualization, and properties of the world itself with properties of the robotic agent and the actions it might probably take on this planet.
I additionally needed to make the GUI itself a bit nicer. After some fast looking out, I discovered this put up that confirmed how one can put a Matplotlib canvas in a PyQT5 GUI, that’s what I went for. For now, I began by including a couple of buttons and edit bins that enable interplay with the world. You may write down (or generate) a location title, see how the present path planner and follower work, and decide and place objects when arriving at particular areas.
In tinkering with this new GUI, I discovered a number of bugs with the unique code which resulted in good elementary modifications within the modeling framework. Or, to make it sound fancier, the GUI offered an important platform for interactive testing.
The very last thing I did when it comes to usability was present customers the choice of making worlds with out even touching the Python API. Because the libraries of doable areas and objects had been already outlined in YAML, I threw within the potential to writer the world itself in YAML as properly. So, in idea, you could possibly take one of many canned demo scripts and swap out the paths to three information (areas, objects, and world) to have a very completely different instance able to go.

pyrobosim GUI with snippets of the world YAML file behind it.
2. Generalizing movement planning
Within the authentic device, navigation was so simple as doable as I used to be centered on actual robotic experiments. All I wanted within the simulated world was a consultant price operate for planning that might approximate how far a robotic must journey from level A to level B.
This resulted in build up a roadmap of (recognized and manually specified) navigation poses round areas and on the heart of rooms and hallways. After getting this graph illustration of the world, you should utilize a typical shortest-path search algorithm like A* to discover a path between any two factors in area.
This time round, I needed a little bit extra generality. The design has now developed to incorporate two well-liked classes of movement planners.
- Single-query planners: Plans as soon as from the present state of the robotic to a particular purpose pose. An instance is the ever present Quickly-expanding Random Tree (RRT). Since every robotic plans from its present state, single-query planners are thought of to be properties of a person robotic in pyrobosim.
- Multi-query planners: Builds a illustration for planning which will be reused for various begin/purpose configurations given the world doesn’t change. The unique hard-coded roadmap matches this invoice, in addition to the sampling-based Probabilistic Roadmap (PRM). Since a number of robots may reuse these planners by connecting begin and purpose poses to an current graph, multi-query planners are thought of properties of the world itself in pyrobosim.
I additionally needed to contemplate path following algorithms sooner or later. For now, the piping is there for robots to swap out completely different path followers, however the one implementation is a “straight line executor”. This assumes the robotic is some extent that may transfer in splendid straight-line trajectories. In a while, I want to contemplate nonholonomic constraints and allow dynamically possible planning, in addition to true path following which units the speed of the robotic inside some limits slightly than teleporting the robotic to ideally observe a given path.
Normally, there are many alternatives so as to add extra of the low-level robotic dynamics to pyrobosim, whereas proper now the main focus is basically on the higher-level conduct aspect. One thing just like the MATLAB primarily based Cell Robotics Simulation Toolbox, which I labored on in a former job, has extra of this in place, so it’s definitely doable!

Pattern path planners in pyrobosim.
Exhausting-coded roadmap (higher left), Probabilistic Roadmap (PRM) (higher proper).
Quickly-expanding Random Tree (RRT) (decrease left), Bidirectional RRT* (decrease proper).
3. Plugging into the most recent ecosystem
This was most likely essentially the most egocentric and pointless replace to the instruments. I needed to play with ROS2, so I made this right into a ROS2 bundle. Easy as that. Nevertheless, I throttled again on the selfishness sufficient to make sure that every little thing is also run standalone. In different phrases, I don’t need to require anybody to make use of ROS in the event that they don’t need to.
The ROS strategy does present a couple of advantages, although:
- Distributed execution: Operating the world mannequin, GUI, movement planners, and so forth. in a single course of just isn’t nice, and in reality I bumped into a number of snags with multithreading earlier than I launched ROS into the combo and will cut up items into separate nodes.
- Multi-language interplay: ROS typically is good as a result of you may have for instance Python nodes interacting with C++ nodes “free of charge”. I’m particularly excited for this to result in collaborations with attention-grabbing robotics instruments out within the wild.
The opposite factor that got here with this was the Gazebo world exporting, which was already obtainable within the former code. Nevertheless, there may be now a more recent Ignition Gazebo and I needed to attempt that as properly. After discovering that polyline geometries (a key function I relied on) was not supported in Ignition, I complained simply loudly sufficient on Twitter that the lead developer of Gazebo personally let me know when she merged that PR! I used to be so excited that I put in the most recent model of Ignition from supply shortly after and with a couple of tweaks to the mannequin era we now help each Gazebo basic and Ignition.

pyrobosim take a look at world exported to Gazebo basic (prime) and Ignition Gazebo (backside).
4. Software program high quality
Another issues I’ve been eager to attempt for some time relate to good software program improvement practices. I’m completely happy that in citing pyrobosim, I’ve up to now been capable of arrange a primary Steady Integration / Steady Growth (CI/CD) pipeline and official documentation!
For CI/CD, I made a decision to check out GitHub Actions as a result of they’re tightly built-in with GitHub — and critically, compute is free for public repositories! I had previous expertise organising Jenkins (see my earlier put up), and I’ve to say that GitHub Actions was a lot simpler for this “hobbyist” workflow since I didn’t have to determine the place and how one can host the CI server itself.
Documentation was one other factor I used to be deliberate about on this redesign. I used to be at all times impressed after I went into some open-source bundle and located professional-looking documentation with examples, tutorials, and a full API reference. So I regarded round and converged on Sphinx which generates the HTML documentation, and comes with an autodoc module that may robotically convert Python docstrings to an API reference. I then used ReadTheDocs which hosts the documentation on-line (once more, free of charge) and robotically rebuilds it once you push to your GitHub repository. The ultimate consequence was this pyrobosim documentation web page.
The consequence could be very satisfying, although I need to admit that my unit exams are… missing for the time being. Nevertheless, it needs to be tremendous straightforward so as to add new exams into the prevailing CI/CD pipeline now that each one the infrastructure is in place! And so, the technical debt continues build up.

pyrobosim GitHub repo with fairly standing badges (left) and automatic checks in a pull request (proper).
Conclusion / Subsequent steps
This has been an introduction to pyrobosim — each its design philosophy, and the important thing function units I labored on to take the code out of its authentic type and right into a standalone bundle (hopefully?) worthy of public utilization. For extra info, check out the GitHub repository and the official documentation.
Right here is my quick listing of future concepts, which is under no circumstances full:
- Enhancing the prevailing instruments: Including extra unit exams, examples, documentation, and usually something that makes the pyrobosim a greater expertise for builders and customers alike.
- Build up the navigation stack: I’m notably interested by dynamically possible planners for nonholonomic autos. There are many nice instruments on the market to tug from, reminiscent of Peter Corke’s Robotics Toolbox for Python and Atsushi Sakai’s PythonRobotics.
- Including a conduct layer: Proper now, a plan consists of a easy sequence of actions. It’s not very reactive or modular. That is the place abstractions reminiscent of finite-state machines and conduct timber can be nice to herald.
- Increasing to multi-agent and/or partially-observable programs: Two attention-grabbing instructions that might require main function improvement.
- Collaborating with the group!
It might be improbable to work with a few of you on pyrobosim. Whether or not you’ve suggestions on the design itself, particular bug stories, or the flexibility to develop new examples or options, I might recognize any type of enter. If you find yourself utilizing pyrobosim on your work, I might be thrilled so as to add your challenge to the listing of utilization examples!
Lastly: I’m at the moment within the strategy of organising job and movement planning with pyrobosim. Keep tuned for that follow-on put up, which could have a lot of cool examples.
Sebastian Castro
is a software program engineer within the Sturdy Robotics Group (RRG) on the MIT Laptop Science and Synthetic Intelligence Laboratory (CSAIL).
Sebastian Castro
is a software program engineer within the Sturdy Robotics Group (RRG) on the MIT Laptop Science and Synthetic Intelligence Laboratory (CSAIL).