怎样用python获取inter realsenseD455传感器的彩色图像
时间: 2023-04-06 10:03:09 浏览: 94
python获取图片颜色信息的方法
5星 · 资源好评率100%
可以使用pyrealsense2库来获取Intel RealSense D455传感器的彩色图像。以下是获取彩色图像的示例代码:
```
import pyrealsense2 as rs
pipeline = rs.pipeline()
config = rs.config()
config.enable_stream(rs.stream.color, 640, 480, rs.format.bgr8, 30)
pipeline.start(config)
try:
while True:
frames = pipeline.wait_for_frames()
color_frame = frames.get_color_frame()
if not color_frame:
continue
color_image = np.asanyarray(color_frame.get_data())
cv2.imshow('Color Image', color_image)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
finally:
pipeline.stop()
cv2.destroyAllWindows()
```
请注意,您需要安装pyrealsense2库和OpenCV库才能运行此代码。
阅读全文