Replies: 1 comment
-
CV-CUDA on ARM Architecture (Jetson Orin/NX)Yes, CV-CUDA runs on ARM, including Jetson devices. Supported ARM PlatformsJetson Orin (AGX Orin, IGX Orin):
Older Jetson (Xavier NX, Nano, etc.):
Installation on Jetson OrinOption 1: Python wheel (easiest) # On Jetson Orin with JetPack 6.0
pip install cvcuda-cu12Option 2: Build from source git clone https://github.com/CVCUDA/CV-CUDA.git
cd CV-CUDA
./ci/build.shPlatform Support Summary (from README.md)
Quick Test on Jetsonimport cvcuda
import torch
# Create a test image
img = cvcuda.Image((640, 480), cvcuda.Format.RGB8)
# Or wrap existing GPU tensor
gpu_tensor = torch.zeros((480, 640, 3), device="cuda", dtype=torch.uint8)
img = cvcuda.as_image(gpu_tensor, format=cvcuda.Format.RGB8)
print(f"Image created: {img.size}")References
Bottom LineOrin: Yes, works out of the box. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
如题。有相关例子么?
Beta Was this translation helpful? Give feedback.
All reactions