AIBOX Series
Both AIBOX-OrinNano and AIBOX-OrinNX are equipped with NVIDIA's original Jetson Orin core board module, standard industrial-grade full-metal shell, aluminum alloy structure for heat conduction, and a banner grille design on the side of the top cover shell for efficient heat dissipation, ensuring computing performance and stability under high-temperature operation, and meeting various industrial-grade application requirements.
AIBOX-OrinNX | AIBOX-OrinNano | |
Module | Jetson Orin NX | Jetson Orin Nano |
AI Performance | 157 TOPS | 67 TOPS |
GPU | 1024-core NVIDIA Ampere architecture GPU with 32 Tensor Cores | 1024-core NVIDIA Ampere architecture GPU with 32 Tensor Cores |
CPU | 8-core Arm Cortex-A78 64-bit CPU 2MB L2 + 4MB L3 | 6-core Arm Cortex A78 64-bit CPU1.5MB L2 + 4MB L3 |
DDR | 16GB 128-bit LPDDR5 102.4GB/s | 8GB 128-bit LPDDR5 68 GB/s |
HDMI | 4K@60Hz | 4K@30Hz |
Application Case: Background Removal
Background Removal technology has become an important tool in the field of image processing, and is mainly used in scenarios such as image editing, data analysis, and application development.
Typical applications:
- Image processing: e-commerce product image extraction, portrait beautification, medical image analysis.
- Video processing: real-time green screen replacement, dynamic object tracking.
- Scientific research preprocessing: improving quantification accuracy by background removal in meteorological chromatographic analysis.
U²-Net
U²-Net (U-squared Net) is a deep learning-based image segmentation model designed for high-precision background removal tasks. Its core technical features and application scenarios are as follows:
- Dual U-shaped codec structure.
- Deep supervision and loss function.
- Lightweight design.

Download Source Code
$ git clone --recursive --depth=1
-
https://github.com/dusty-nv/jetson-inference
Compile/Install
Reference: https://github.com/dusty-nv/jetson-inference/blob/master/docs/building-repo-2.md
Running the Example
# remove the background (with alpha)
$ ./backgroundnet.py images/bird_0.jpg images/test/bird_mask.png
# replace the background
-
$ ./backgroundnet.py --replace=images/snow.jpg images/bird_0.jpg images/test/bird_replace.jpg
