重现步骤
1、尝试设置曝光参数
sensor.set_auto_exposure(False, exposure_us = 1000)
print("New exposure == %d" % sensor.get_exposure_us())
输出依旧为0,成像效果没有变化。
2、尝试设置增益参数
sensor.set_auto_gain(False,gain_db = 4)
print("New gain == %f db" % sensor.get_gain_db())
输出依旧为0,成像效果没有变化。
3、尝试手动白平衡控制
sensor.set_auto_whitebal(False, rgb_gain_db = (10, 0.0, 0.0))
print(sensor.get_rgb_gain_db())
输出依旧为0,成像效果没有变化。
4、尝试其他参数调节
sensor.set_brightness(-2)
sensor.set_saturation(-2)
sensor.set_contrast(-2)
前后对比均无变化
期待结果和实际结果
0V2640摄像头在曝光和增益调节上,变化明显;而OV5640没有任何变化,请问该如何调节0V5640的成像效果
软硬件版本信息
K210-OV5640-OV2640
错误日志
尝试解决过程
补充材料