Realsense D455 修改分辨率和FPS

  1. 默认的分辨率为1920*720,fps为30hz
  2. 对rs_launch.py文件进行修改
'depth_width',                  'default': '424'
'depth_height',                 'default': '240'
'color_width',                  'default': '424'
'color_height',                 'default': '240'
'depth_fps',                    'default': '15.'
'color_fps',                    'default': '15.'
'align_depth',                  'default': 'true'
  1. 想要修改分辨率或者fps,必须将两个都改为自己想要的数值,不能有一个值是default(-1)

你可能感兴趣的:(vslam_exp,slam)