英文:
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:
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')
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论