You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The nvImageCodec is an open-source library of accelerated codecs with unified interface.
15
18
It is designed as a framework for extension modules which delivers codec plugins.
16
19
@@ -85,8 +88,14 @@ This section describes the recommended dependencies to use nvImageCodec.
85
88
- RHEL 8, 9
86
89
- SLES 15
87
90
- Ubuntu 20.04, 22.04
91
+
- aarch64-jetson (CUDA Toolkit >= 12.0)
92
+
- Ubuntu 22.04
93
+
- Windows
94
+
- x86_64
95
+
-[Microsoft Visual C++ Redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170)
88
96
- NVIDIA driver >= 520.56.06
89
97
- CUDA Toolkit > = 11.8
98
+
- nvJPEG2000 >= 0.8.0
90
99
- Python >= 3.8
91
100
92
101
## Install nvImageCodec library
@@ -127,21 +136,49 @@ Install nvJPEG for CUDA 12.x
127
136
pip install nvidia-nvjpeg-cu12
128
137
```
129
138
139
+
### Optional installation of nvJPEG2000 library
140
+
141
+
[nvJPEG2000 library](https://developer.nvidia.com/nvjpeg2000-downloads) can be installed in the system, or installed as a Python package. For the latter, follow the instructions below.
142
+
143
+
Install nvJPEG2000 for CUDA 11.x
144
+
145
+
```
146
+
pip install nvidia-nvjpeg2k-cu11
147
+
```
148
+
149
+
Install nvJPEG2000 for CUDA 12.x
150
+
151
+
```
152
+
pip install nvidia-nvjpeg2k-cu12
153
+
```
154
+
155
+
Install nvJPEG2000 for CUDA 12.x on Tegra platforms
156
+
157
+
```
158
+
pip install nvidia-nvjpeg2k-tegra-cu12
159
+
```
160
+
161
+
Please see also [nvJPEG2000 installation documentation](https://docs.nvidia.com/cuda/nvjpeg2000/userguide.html#installing-nvjpeg2000) for more information
0 commit comments