Description
hey,
i am building librealsense from scratch using ./buildLibrealsense.sh script and then doing
$ source ~/.bashrc
so that pyrealsense could work in python3. And it is successfully imported.
Then i am running rs-enumerate-devices in the terminal which shows both the devices but when i run the following code:
import pyrealsense2 as rs
context = rs.context()
pipelines = []
for device in context.query_devices():
pipe = rs.pipeline(context)
config = rs.config()
config.enable_device(device.get_info(rs.camera_info.serial_number))
pipe.start(config)
pipelines.append(pipe)
print(device)
it is showing :
<pyrealsense2.device: Intel RealSense D435 (S/N: 834412071756)>
and gets stuck.
Please help me out. What am i doing wrong?
I have shifted from jetpack version 4.3 to 4.2.3 and then 4.2.2.
Help me out here.