我是靠谱客的博主 诚心河马,最近开发中收集的这篇文章主要介绍Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)
参考文章1:https://github.com/IntelRealSense/librealsense/issues/4636#issuecomment-523534742
参考文章2:https://github.com/IntelRealSense/librealsense/issues/4636#issuecomment-523534742
参考文章3:https://blog.csdn.net/Dontla/article/details/103886843
import pyrealsense2 as rs
pipeline = rs.pipeline()
config = rs.config()
profile = pipeline.start(config) # Start streaming
depth_sensor = pipeline.get_active_profile().get_device().query_sensors()[0]
sensor = pipeline.get_active_profile().get_device().query_sensors()[1]
print(sensor.get_option(rs.option.exposure)) # 166.0
print("Trying to set Exposure")
# auto_exposure
sensor.set_option(rs.option.auto_exposure_priority, True)
print(sensor.get_option(rs.option.exposure)) # 166.0
sensor.set_option(rs.option.exposure, 5000.000)
print(sensor.get_option(rs.option.exposure)) # 5000.0
# sensor_dep = profile.get_device().first_depth_sensor()
# exp = sensor_dep.get_option(rs.option.exposure)
# print("exposure = %d" % exp)
# print("Setting exposure to new value")
# exp = sensor_dep.set_option(rs.option.exposure, 25000)
# exp = sensor_dep.get_option(rs.option.exposure)
# print("New exposure = %d" % exp)
profile = pipeline.stop
最后
以上就是诚心河马为你收集整理的Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)的全部内容,希望文章能够帮你解决Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)Intel Realsense D435 自动曝光以及如何设置曝光参数(exposure)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复