4. Add Camera

Omniverse Isaac Sim provides a variety of sensors that can be used to sense the environment and robot’s state. In this tutorial, we will cover the simple example of attaching a camera sensor to our mock robot, a process that can be generalized to other sensors. Details regarding the camera and other types of sensors can be found in our Advance Tutorials and Sensor Extensions under Manuals.

4.1. Learning Objectives

This tutorial details how to

  • Add cameras

  • Attach cameras to geometries

4.2. Getting Started

Prerequisites

  • Please complete all previous tutorials in the GUI workflow series prior to this one.

To add a camera, go to the Menu Bar and select Create > Camera. A camera will appear on the stage tree and a grey wireframe representing the camera’s view will appear on the stage. You can move and rotate the camera’s transform just like any other objects on the stage.

4.3. Attach Camera to Robot

  1. Let’s first rename the newly added camera to car_camera so we can keep track of it.

  2. It would be easier to place the camera if we can see both the desired camera input stream, as well as where it is relative to the robot from an outside camera. Open up a second viewport window by going to the Menu Bar and click Window > New Viewport Window. A new viewport will appear, dock it wherever you’d like.

  3. Keep one of the viewport in Perspective camera view, and change the other one to car_camera view. Find the Cameras menu on the top edge of the viewport, and switch to Camera > car_camera. Now we can have both the view of the onboard camera, as well as an overview of the scene.

  4. Attach the camera to the robot’s body by dragging the prim under body. Now the camera will move together with the body. You may need to switch the camera view for one the viewport again.

  5. Let’s point the camera slightly down so we can see the car as well as the ground. Set the camera transform translation to x=20,y=0,z=200 and orientation to x=0,y=70,z=90. You should see the viewport showing the onboard camera view splitting the window between the robot’s body and the ground, and the relative position and orientation of the camera to the robot in the Perspective camera viewport.

  6. Press Play. The camera onboard the robot should now move with the robot.

Similar strategy is used to apply other onboard sensors.

4.4. Summary

In this tutorial we learned how to add a camera to the robot.

4.4.1. Next Steps

Continue on to Script Editor to learn how to run python APIs inside the GUI.

4.4.2. Further Reading