Keras: color_mode = ‘grayscale’ does not convert to grayscale

huangapple go评论61阅读模式
英文:

Keras: color_mode = 'grayscale' does not convert to grayscale

问题

我正在尝试从目录data中读取数据集,并希望将照片转为灰度。

data = tf.keras.utils.image_dataset_from_directory('data', shuffle=True, color_mode='grayscale')

当我打印结果时,图像不是灰度的。

如何使用Keras将图像转为灰度?

英文:

I am trying to read a dataset from directory data and I want the photos to be grayscaled.

data = tf.keras.utils.image_dataset_from_directory('data', shuffle=True, color_mode='grayscale')

When I print the results, the images are not grayscaled:
Keras: color_mode = ‘grayscale’ does not convert to grayscale

How can I grayscale an image with keras?

答案1

得分: 0

请添加 "cmap" 参数到你的 imshow 方法:

plt.imshow(img, cmap='gray')
英文:

Add the " cmap " parameter to your imshow method :

plt.imshow(img, cmap='gray')

huangapple
  • 本文由 发表于 2023年2月14日 00:12:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/75438456.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定