Sample Applications

Small sample applications to demonstrate various features of Isaac can be found in the folders //apps/samples and //apps/tutorials. Note that many samples have hardware requirements.

Samples come with a BUILD file and a single JSON file. The JSON file contains a compute graph, which defines the functionality of the application. For example, a camera sample application has a camera node and a viewer node. The camera node acquires images and sends them to the viewer node for visualization. The JSON file may also contain a configuration section for specification of various configuration parameters. Sometimes you might have to adapt the configuration based on your hardware setup or platform.

How to run an application on the desktop is explained in the Running an Application section. Deploying an application to a Jetson device and running it on the Jetson is explained in the Deploying and Running on Jetson section.

The following sections describe a selection of samples to get you started.

A tutorial that introduces the concept of apps and codelets. It shows how to create a simple application with a codelet that ticks periodically. You can find a step-by-step tutorial for this application in the Developing Codelets in C++ section of this documentation.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware requirements: none

A development of the basic ping tutorial that shows how messages can be passed from one node to another node.

Platforms: Desktop, Jetson TX/2, Jetson Xavier, Jetson Nano

Hardware requirements: none

A basic tutorial that introduces using Isaac within a Jupyter notebook. It shows how to start and stop an application, send and receive a message, and edit configuration parameters.

Platforms: Desktop, Jetson TX/2, Jetson Xavier, Jetson Nano

Hardware requirements: none

An intermediate tutorial that explains how to write a basic proportional controller for a differential robot base.

Platforms: Jetson TX2, Jetson Xavier, Jetson Nano

Hardware requirements: Segway

A basic sample application that connects to a camera using video for Linux (V4L2). The camera image can be seen in Sight. (You must add a window in Sight to see the image. See Windows Menu (Top Left) for more information.) Make sure to set a valid resolution in the configuration section in the application file.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware: Requires a camera (for example, a Realsense or a ZED camera). A normal webcam may also work.

Demonstrates the GPU accelerated AprilTag fiducial detection GEM. A connected Realsense camera and a printed AprilTag are required. (The AprilTag can be displayed on your screen, if necessary.) In case you do not have a Realsense camera, you can switch to a different camera similar to that used in the v4l2_camera tutorial.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware: Requires a camera and an AprilTag fiducial.

A basic sample application that connects to a ZED camera to provide stereo visual odometry.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware: Requires a camera.

A basic sample application that connects to a Realsense camera. The camera image can be seen in Sight. Make sure to set a valid resolution in the configuration section in the application file.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware: Requires a Realsense camera.

A basic sample application that connects to a ZED camera. The camera image can be seen in Sight. Make sure to set a valid resolution in the configuration section in the application file.

Platforms: Desktop, Jetson TX2, Jetson Xavier, Jetson Nano

Hardware: Requires a ZED camera.

A sample application that corrects distortion in images captured with a ZED camera. The effects of the correction can be seen in Sight. (You must add a window in Sight to see the image. See Windows Menu (Top Left) for more information.)

Platforms: Desktop, Jetson Xavier

Hardware: Requires a camera.

A sample application that demonstrates point cloud matching using a Realsense camera.

Platforms: Desktop, Jetson Xavier

Hardware: Requires a Realsense camera.

A sample application that demonstrates the coarse-to-fine stereo matching GEMs. It works with a stereo image and computes depth images.

Platforms: Desktop, Jetson TX2, Jetson Xavier

Hardware: Requires a ZED camera.

A sample application that demonstrates real-time GPU accelerated text to speech synthesis in Isaac SDK. The sentences provided in the configuration file are converted to speech and played through speakers or headphones.

Platforms: Desktop, Jetson Xavier

Hardware: Headphones or speakers

A sample application that demonstrates creating a bridge between Isaac and ROS by using roscpp, C++ API of ROS.

As ROS Bridge section explains, Isaac provides two methods to bridge to ROS:

  1. Recommended usage: Using converters provided in “ros_bridge” package,

  2. Advanced usage: Using roscpp directly, as this sample illustrates.

This sample application connects to ROS, but does not have any Isaac node other than the bridge. So, it is not useful when it is run as is. It is meant to be a sample on how to create a bridge. Users can implement a bridge codelet like this one and add it to their application graph.

Platforms: Desktop, Jetson Xavier

Hardware requirements: none

© Copyright 2018-2020, NVIDIA Corporation. Last updated on Feb 1, 2023.