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
Ubuntu (Jetson Nano SD image) Linux jetson-desktop 4.9.337-tegra
Kernel Version (Linux Only)
4.9.337
Platform
NVIDIA Jetson
SDK Version
2.54.1
Language
python
Segment
IoT
Issue Description
I noticed in the latest built pyrealsense2 there are also versions for aarch64 for python 3.8 and 3.9. I decided to try it on Jetson Nano, and it works:
test.py
import pyrealsense2 as rs
pipe = rs.pipeline()
profile = pipe.start()
try:
for i in range(0, 100):
frames = pipe.wait_for_frames()
for f in frames:
print(f.profile)
finally:
pipe.stop()
Hi @nixone Please first try reloading the device-handling udev rules outside of Docker using the instruction below to see whether it resolves your problem within Docker.
sudo udevadm control --reload-rules && udevadm trigger
Issue Description
I noticed in the latest built pyrealsense2 there are also versions for aarch64 for python 3.8 and 3.9. I decided to try it on Jetson Nano, and it works:
test.py
Running it receives frames:
But, when I try to use it in docker, it fails with not receiving frames:
docker-compose.yml
Does anyone have an idea what might I have wrong in the docker setup?
The text was updated successfully, but these errors were encountered: