如何在Python上使用Rawpy读取图片的RGB值

时间:2019-03-21 17:28:42

标签: python-3.x image rgb

我正在尝试使用Python从16位“ nef”图像中获取信息。

我一直在使用rawpy打开文件并使用图像估值器获得线性输出。但是现在我只想看看绿色通道。

path = 'image.nef' 
with rawpy.imread(path) as raw:
    rgb_linear = raw.postprocess(gamma=(1,1),no_auto_bright=True, output_bps=16) 
    rgb= raw.postprocess(no_auto_bright=True, output_bps=16)

现在我不知道如何从中获取RGB值。

1 个答案:

答案 0 :(得分:2)

您可以像这样分开并保存红色,绿色和蓝色通道:

#!/usr/bin/env python3

import rawpy
import imageio

with rawpy.imread('raw.nef') as raw:
    rgb = raw.postprocess(gamma=(1,1), no_auto_bright=True, output_bps=16)

# Extract Red, Green and Blue channels and save as separate files
R = rgb[:,:,0]
G = rgb[:,:,1]
B = rgb[:,:,2]

imageio.imsave('R.tif', R)
imageio.imsave('G.tif', G)
imageio.imsave('B.tif', B)