如何在realsense D435中完全关闭深度传感器?
Posted
技术标签:
【中文标题】如何在realsense D435中完全关闭深度传感器?【英文标题】:How to turn off depth sensor completely in realsense D435? 【发布时间】:2020-05-28 03:38:07 【问题描述】:我知道realsense的重点是深度图像,但是有没有办法完全关闭深度相机一段时间?我正在使用 c++ api。 Python 也不错。
【问题讨论】:
【参考方案1】:可以在启动相机之前禁用深度流。您也可以根据需要配置流。
rs2::config config;
config.disable_stream(RS2_STREAM_DEPTH); // disable depth streams
rs2::pipeline pipeline;
rs2::pipeline_profile pipeline_profile;
pipeline_profile = pipeline.start(config); // start camera
while(true)
rs2::frameset current_frameset = pipeline.wait_for_frames(); //get all synched frames
rs2::video_frame current_rgb_frame = current_frameset.get_color_frame();// get rgb frame
..
..
【讨论】:
以上是关于如何在realsense D435中完全关闭深度传感器?的主要内容,如果未能解决你的问题,请参考以下文章
基于深度相机 RealSense D435i 的 ORB SLAM 2
win10+vs2015+Intel RealSense D435i深度相机配置
Realsense D435 在 MATLAB 中更改分辨率