在python imgaug库中,将仿射变换应用于图像时,如何将cval设置为RGB?

时间:2019-01-18 19:42:10

标签: python data-augmentation

在文档中,cval参数的描述如下:

用于填充结果图像中输入图像中不存在的像素的常数值(例如,当向左平移时,会在右侧创建一些新像素)。

我正在尝试将其值设置为RGB(特别是绿色)。

seq = iaa.Sequential([iaa.Affine(rotate=30,cval=255)])
seq_det = seq.to_deterministic()
new_image = seq_det.augment_image(image)

f, axs = plt.subplots(1,2, figsize=(20,6))
axs[0].imshow(image)
axs[1].imshow(new_image)
plt.show()

here is an example picture 我想将r.h.s图片中的白色背景设置为绿色

0 个答案:

没有答案