如何在realsense D435中完全关闭深度传感器?
How to turn off depth sensor completely in realsense D435?
我知道realsense的重点是深度图,但是有没有办法完全关闭深度摄像头一段时间?我正在使用 c++ api。 Python也很好
可以在启动相机之前禁用深度流。您也可以根据需要配置流。
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的重点是深度图,但是有没有办法完全关闭深度摄像头一段时间?我正在使用 c++ api。 Python也很好
可以在启动相机之前禁用深度流。您也可以根据需要配置流。
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
..
..
}