15-494/694 Cognitive Robotics: Lab 5
I. Software Update and Initial Setup
- At the beginning of every lab you should
update your copy of the cozmo-tools package. Do this:
$ cd ~/cozmo-tools
$ git pull
- For this lab you will need a robot, a charger, a Kindle, and some
light cubes.
- Log in to the workstation.
- Make a lab5 directory.
- Connect the Kindle to the robot and start simple_cli.
II. Examining Cozmo's Path Planner
You can do this portion of the lab with a partner. Cozmo includes a
built-in path planner that is used by the Pilot to navigate around
obstacles. In this portion of the lab we will investigate the path
planner's behavior.
- Download the file Lab5.fsm and read it.
- Lay out the three cubes so they form a left-to-right line about 5 inches in front of Cozmo.
Space the cubes roughly 4 inches from center to center, so the line is 8 inches wide.
- Compile and run Lab5. The program brings up four viewers: the camera viewer, the worldmap viewer,
the particle viewer, and the path viewer.
- Tilt the robot's head up so he can see the cube dead ahead.
- In the particle viewer, use the "a" and "d" keys to turn the robot so he sees the
other two cubes and adds them to his world map.
- Now you are ready to construct a pilot request. Enter the following:
destination = Pose(300, 0, 0, angle_z=degrees(180))
PilotToPose(destination).now()
- You'll note that Cozmo makes a number of gratuitous spins on his way to the
destination. This is a bug.
- If we don't care about the final heading of the robot, we can specify it as NaN.
- Place the robot back at its starting location, and steer it with the
particle viewer so all three cubes are on the map again.
- Try this Pilot request:
destination = Pose(300, 0, 0, angle_z=degrees(math.nan))
PilotToPose(destination).now()
III. Path Planning Failures
- Place the robot back at its starting location, and steer it with the
particle viewer so all three cubes are on the map again.
- Ask the Pilot to navigate to a new destination that is only 150
mm head of the robot. This should be roughly the location of the
middle cube. You should get a "goal collides" error. If not, adjust your
parameters as necessary to demonstrate the error.
- Use
Forward(100).now() to drive the robot up to the middle cube. Now
ask the Pilot to navigate to the point 300 mm ahead. You should get a "start
collides" error because the robot's starting state is in collision. If not, adjust your
parameters as necessary to demonstrate the error.
- Bring the robot back to its starting position. Arrange the
three cubes at the vertices of an equilateral triangle 160 mm on a
side (measured from cube center to cube center), with the middle
of the triangle roughly 6 inches in front of the robot. Turn the
robot as necessary so it knows where all three cubes are. Then
ask the Pilot to navigate to the center of the triangle. What
happens?
IV. SLAM
- In the previous section we used the cubes as landmarks, but normally they are
not used this way because the robot is expected to pick them up and move them around.
Instead we use ArUco markers as landmarks, and paste them onto walls.
- Set up two walls (provided in the lab) to form a little robot habitat. Note
that the walls must be distinct. Wall 1 uses ArUco markers 1-12, and wall 2 uses
markers 13-24.
- Exit simple_cli and restart it.
- Use the particle viewer to drive the robot, and observe how
Cozmo constructs his map in the worldmap viewer. When he sees one ArUco marker
he creates a marker object. When he sees two markers on the same wall, he builds the wall.
Walls are defined in cozmo_fsm/wall_defs.py.
- Can you manually drive Cozmo through a doorway using the particle viewer? Try it.
- In cozmo_fsm/doorpass.py there is code for exploring a walled
environment by driving through doors. Point Cozmo at a wall so he
can see a couple of ArUco markers. Then do
Explore().now() and
see how he does.
Homework
You can do this assignment either individually or in teams of two (but
no more than two) people.
V. Habitat Exploration
Using at least three walls (provided in the lab), construct a Cozmo
habitat. Then write code to autonomously drive Cozmo through the
habitat so that he forms a map of it.
- Assume Cozmo starts outside the habitat, but not necessarily facing it.
- Have him turn until he spots a wall. (Look for a WallObj object in
robot.world.world_map.objects.)
- Once he's found a wall, he knows where the doorways are located. Using the
code in cozmo_fsm/doorpass.fsm as an example, write code to take Cozmo through
the doorway into the habitat.
- Write additional code to look for new walls. For each wall
added, pick a door and drive through it to explore further. Do
not build in any knowledge of the particular habitat you've
constructed; he must learn the map by exploration. But he does
know which ArUco markers are associated with which walls, and
where the doorways appear in those walls.
- Keep a list of the doors Cozmo has driven though. (Each has a unique ArUco marker.)
- When Cozmo has driven through every doorway at least once, your
program should end.
- Extension for lab 6: modify your program so that Cozmo can
carry a cube through a doorway. You will have to figure out how to
hold the cube so that he can still see what he needs to see.
If your code is well-written, it will work for any habitat. We will test it on
some new ones.
Hand In
Hand in your code, a photo of the habitat you created, and a screenshot showing the
final worldmap after Cozmo has finished his explorations.
|