TensorRT-Vision provides optimized inference for computer vision models using NVIDIA TensorRT. It supports:
- Object Detection
- Object Segmentation
- Object Classification
- Object Re-Identification
- Multi Object Tracking
- CUDA 12.6
- TensorRT 10.7.0
- Python 3.12.3
Follow installation instructions here
# Build all apps (default)
meson setup build
meson compile -C build
# Or explicitly specify apps to build
meson setup build -Dbuild_apps=detector,mot
meson compile -C build
# Make sure trtexec is installed for model export
alias trtexec='/usr/src/tensorrt/bin/trtexec'Each app has its own README with detailed instructions:
- Object Detection Guide
- Object Segmentation Guide
- Multi Object Tracking Guide
- Object Classification Guide
- Object Re-Identification Guide
This project builds upon foundations from:
- tensorrt-cpp-api - A C++ TensorRT wrapper