pyrealsense2读取 infrared

import pyrealsense2 as rs
pipeline = rs.pipeline()
config = rs.config()
config.enable_stream(rs.stream.infrared)
pipeline.start(config)
frames = pipeline.wait_for_frames()
ir = frames.first(rs.stream.infrared) # also I think this is possible: ir = frames[0]
posted @ 2019-07-22 21:54  Ahuzcl  阅读(983)  评论(0编辑  收藏  举报