简体   繁体   中英

how do i convert image into gray scale using python?

I have 5 images in folder. I want to convert all that images into grey scale.

import glob
colorIm = []
for filename in glob.glob('/content/drive/My Drive/Colab Notebooks/Asplab/Cifar/*.png'):
  print(filename)
  img = Image.open(filename)
  colorIm.append(img)
  greyIm=colorIm.convert('L')

AttributeError: 'list' object has no attribute 'convert'

You need to convert each image in the list:

import glob

colorIm = []
for filename in glob.glob('/content/drive/My Drive/Colab Notebooks/Asplab/Cifar/*.png'):
  print(filename)
  img = Image.open(filename)
  colorIm.append(img)

greyIm = [img.convert('L') for img in colorIm]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM