标签: python python-3.x
我需要在Python中将14位Bayer(raw)数据转换为12位原始数据。我知道我需要使用右移。但我不确定如何在python中使用它 我尝试了这个 newbayer = np.right_shift(bayer,2)
不确定我是否做对了。