[ROS in 5 mins] 025 – What is Rviz?

What is rviz?

Written by Bayode Aderinola

25/09/2019

In this post, we will see what Rviz is all about and how to use it.

We are going to use a ROS1 installation for this, but you don’t need to install ROS, as we will use the ROS Development Studio (ROSDS), an online platform that provides access to ROS1 or ROS2 computers and other powerful ROS tools within a browser!

Let’s go!

Step 1: Create a Project (ROSject) on ROSDS

Action first before the theory! Grab a copy of the project used for this post here. If you don’t have an account on the ROSDS, you will be asked to create one.

Once you have cloned the project, open it up and give it a moment to finish loading.

Step 2: Bring up a TurtleBot2 simulation

Head to the Simulations menu and launch one of the pre-configured simulations:

  1. Select “Simulations from the main menu”.
  2. Under “World”, select “Empty to World”.
  3. Under “Robot”, select TurtleBot2.
  4. Click “Start Simulation”.

ROSDS - Launch a simulation

You should now have something like this:

TutleBot2 with wall in front

That’s a TutleBot2 facing a wall.

Step 3: Launch the rviz program and use it to “spy” on the TurtleBot

We need two more tools here.

  • Minimize the Gazebo window.
  • From the Tools menu, pick “Shell” and “Graphical Tools”. Arrange them side-by-side for better visibility.

On the Shell tool, run the following command:

rosrun rviz rviz

You should now have something like this:

Rviz - launch visualization

Maximize the Rviz window and:

  1. Double-click the Title bar to bring the window into full focus. Ensure you can clearly see the “Add” button lablled below.
  2. Change the “Fixed frame” to “base_link”.
  3. Click “Add” to add a visualization.
  4. Select “Camera”
  5. Click okay.

Semi-finally, select a topic for the Camera visualization. You should see the brick wall in full color now!

Finally, pick another Shell from the Tools menu and run the following command to cause the robot to rotate. You should see the wall in the Camera disappear and appear again as the front camera position changes.

# Just type rostopic pub /cmd_vel and then press TAB-TAB to complete message structure.
# Then change angular.z to 1.0
user:~$ rostopic pub /cmd_vel geometry_msgs/Twist "linear:
  x: 0.0
  y: 0.0
  z: 0.0
angular:
  x: 0.0
  y: 0.0
  z: 1.0"

Interesting, isn’t it? You can try and play with other visualization tools and see how they work.

Now’s let review the theory briefly.

Step 4: So, what’s Rviz?

We have just seen Rviz in action. So what exactly is this amazing tool?

  • Short for ROS Visualization. It’s a 3-dimensional visualization tool for ROS.
  • It helps to visualize what the robot seeing and doing.

And that’s it. It’s more practical than theory 🙂 .

Extra: Video

Prefer to watch a video demonstrating the steps above? We have one for you below!

 

Related Resources and Further Learning

If you are a ROS beginner and want to learn ROS basics fast, we recommend you take any of the following courses on Robot Ignite Academy:

Feedback

Did you like this post? Do you have questions about what is explained? Whatever the case, please leave a comment on the comments section below, so we can interact and learn from each other.

If you want to learn about other ROS topics, please let us know in the comments area and we will do a video or post about it

Masterclass 2023 batch2 blog banner

Check Out These Related Posts

129. ros2ai

129. ros2ai

I would like to dedicate this episode to all the ROS Developers who believe that ChatGPT or...

read more

0 Comments

Submit a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Pin It on Pinterest

Share This