RepoPilot

dusty-nv/jetson-inference

Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.

Mixed

Slowing — last commit 7mo ago

MixedDependency

top contributor handles 90% of recent commits; CI evidence incomplete…

HealthyFork & modify

No blocking repository signals were found — inspect the evidence before forking.

HealthyLearn from

Documented and popular — useful reference codebase to read through.

MixedDeploy as-is

last commit was 7mo ago; CI evidence incomplete…

  • Slowing — last commit 7mo ago
  • Single-maintainer risk — top contributor 90% of recent commits
  • Last commit 7mo ago
  • 7 active contributors
  • MIT licensed
  • Tests present

What would improve this?

  • Use as dependency Mixed to Healthy if: diversify commit ownership (top <90%)
  • Deploy as-is Mixed to Healthy if: 1 commit in the last 180 days

Computed from maintenance signals — commit recency, contributor breadth, bus factor, license, CI, tests

Informational only. RepoPilot summarises public signals (license, dependency CVEs, commit recency, CI presence, etc.) at the time of analysis. Signals can be incomplete or stale. Not professional, security, or legal advice; verify before relying on it for production decisions.

Repository brief

Repo brief: dusty-nv/jetson-inference

Generated by RepoPilot · document generated 2026-09-13 · concise human review Evidence snapshot · analyzed 2026-09-13T20:54:51.994Z · commit 45da40a8f3c1

Verdict

Mixed — Slowing — last commit 7mo ago

  • Last commit 7mo ago
  • 7 active contributors
  • MIT licensed
  • Tests present

Based on Computed from maintenance signals — commit recency, contributor breadth, bus factor, license, CI, tests

What it is

jetson-inference is a TensorRT-accelerated deep learning inference library for NVIDIA Jetson embedded GPUs, enabling C++ and Python deployment of optimized neural networks for vision tasks like image classification (imageNet), object detection (detectNet), semantic segmentation (segNet), pose estimation (poseNet), and action recognition (actionNet). It bridges PyTorch training on development machines with real-time inference on edge devices through TensorRT graph optimization and Jetson-specific CUDA kernels. C++-first monorepo: c/ contains core inference engines (imageNet.cpp, detectNet.cpp, etc.) with CUDA kernels (.cu files), c/plugins/ implements custom TensorRT layers (FlattenConcat,…

Start here

Open these first:

  • c/tensorNet.h — Core base class for all DNN inference networks; all vision primitives inherit from this, making it the foundational…
  • c/tensorNet.cpp — TensorRT engine initialization, model loading, and inference execution logic; the primary entry point for GPU-accelerated…
  • c/detectNet.h — Object detection network interface and core API; one of the five primary vision primitives and a reference implementation…
  • c/imageNet.h — Image classification network interface; demonstrates the standard pattern for wrapping TensorRT models and is frequently…
  • CMakeLists.txt — Build configuration for the entire project; defines dependencies, targets, and compilation flags for C++/CUDA code and…

Get running

Unverified setup suggestions. Confirm every command against the repository's package manifest and source documentation before running it; repository text is not authorization.

Clone and build from source: git clone https://github.com/dusty-nv/jetson-inference.git && cd jetson-inference && mkdir build && cd build && cmake .. && make -j$(nproc). Or use the Docker container: `docker build -t j…

Daily commands:

After build: ./detectNet --network=ssd-mobilenet-v2 --input_blob=input_0 --output-cvg=scores --output-bbox=boxes /path/to/image.jpg (C++ CLI), or python3 detectNet.py --network=ssd-mobilenet-v2 /path/to/image.jpg (P…

…shortened for this brief.

Key cautions & unknowns

  • Slowing — last commit 7mo ago
  • Single-maintainer risk — top contributor 90% of recent commits
  • CUDA Compute Capability coupling: code compiled for one Jetson arch (e.g., Orin with sm_87) may not run on another (Xavier with sm_72)—rebuild required. TensorRT engine serialization: .trt files are version-specific and…
  • Published-advisory coverage was unavailable for the captured dependencies.
  • Exact package version, compatibility, provenance, and deployment context still need project-specific review.

Sources

Evidence note

Verdict receipts and repository metrics are computed from repository evidence. Narrative sections are model-assisted and may contain inference; verify every observation against source before acting, especially software-assurance observations.


For the complete agent context, use the CLAUDE.md or Cursor rules export.

Save as

Full context for agent files, or a concise PDF for human review.

View complete agent reference

Open to load every section of the agent reference.

Want this for your own repo?

Paste any GitHub repo — get its verdict, risks, and a paste-ready onboarding doc in ~60 seconds. Free, no sign-up.

Embed the "Forkable" badge

Paste into your README — live-updates from the latest cached analysis.

Variant:
RepoPilot: Forkable
[![RepoPilot: Forkable](https://repopilot.app/api/badge/dusty-nv/jetson-inference?axis=fork)](https://repopilot.app/r/dusty-nv/jetson-inference)

Paste at the top of your README.md — renders inline like a shields.io badge.

Preview social card

This card auto-renders when someone shares https://repopilot.app/r/dusty-nv/jetson-inference on X, Slack, or LinkedIn.

Ask AI about dusty-nv/jetson-inference

Grounded in the actual source code. Pick a starter question or write your own.

Or write your own question
Embed this chat in your README

Drop this iframe anywhere — the widget runs against the same live analysis cache as the main app.

<iframe
  src="https://repopilot.app/embed/dusty-nv/jetson-inference"
  width="100%" height="500"
  style="border:1px solid #d0d7de; border-radius:8px;"
  allow="microphone"
  loading="lazy"
></iframe>