Checking for CUDA availability on the Target...
Checking for 'nvcc' in the target system path...
Checking for cuDNN library availability on the Target...
Checking for TensorRT library availability on the Target...
Checking for prerequisite libraries is complete.
Gathering hardware details...
Checking for third-party library availability on the Target...
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
hwJetson = jetson('10.134.169.67', 'JetsonCam', 'ws132');
webcams = hwJetson.WebcamList;
disp('Available Webcams:');
for i = 1:length(webcams)
fprintf('%d: %s\n', i, webcams{i});
for i = 1:length(webcams)
fprintf('\nDetails of Webcam %d: %s\n', i, camName);
cam = camera(hwJetson, camName, [1280 720]);
videoModes = cam.AvailableResolutions;
fprintf('Available Resolutions:\n');
for j = 1:length(videoModes)
fprintf('Resolution %d: %s\n', j, videoModes{j});
fprintf('Error initializing camera %s: %s\n', camName, ME.message);