← Back to marketplace
// description

A pre-integrated Isaac ROS perception graph — ESS depth, segmentation, AprilTag pose, and pedestrian detection — packaged as a single Docker image with sample launch files for Jetson AGX Orin and IGX.

RosLab Packages · package

Isaac Perception Pack

NVIDIA Isaac ROS perception bundle: depth, segmentation, AprilTag, person detection.

price
By quote
Jetson licence
// Overview

A pre-integrated Isaac ROS perception graph — ESS depth, segmentation, AprilTag pose, and pedestrian detection — packaged as a single Docker image with sample launch files for Jetson AGX Orin and IGX.

// Specifications
Runtime
Isaac ROS
Compute
Jetson Orin
Models
ESS · YOLO
Container
Docker
// Deployment models
On-premSelf-hosted SDK
// Suggested use cases
  • Outdoor inspection robots
  • Sidewalk delivery perception
  • Cobot safety zones
// Deployment runbook

Brings up the Isaac ROS perception graph (depth + segmentation + AprilTag + pedestrian) on a Jetson Orin device.

Prerequisites
  • Jetson AGX Orin / Orin NX with JetPack 6.0+
  • nvidia-container-toolkit installed and `--runtime nvidia` working
  • Camera: Hawk, Realsense D455, or Zed 2i connected over USB3 / GMSL
Install steps
  1. 01
    Pull the perception image
    docker pull registry.roslab.ai/isaac-perception:2.1.0-jp6
  2. 02
    Run the container with GPU + camera access
    docker run --rm -it --runtime nvidia --network host \
      -v /dev:/dev --privileged \
      registry.roslab.ai/isaac-perception:2.1.0-jp6
  3. 03
    Launch the graph

    Starts ESS depth, segmentation, AprilTag and pedestrian nodes.

    ros2 launch roslab_isaac_perception full_graph.launch.py camera:=realsense
  4. 04
    Inspect outputs in Foxglove
    ros2 topic list | grep -E '/depth|/seg|/apriltag|/pedestrian'
Verify

Depth at ≥30 FPS, segmentation at ≥15 FPS — check with the bundled perf script.

ros2 run roslab_isaac_perception perf_report
Full documentation