Dado un conjunto de datos de imágenes sin procesar, que generalmente necesitan algún procesamiento previo, que una persona tiene que hacer físicamente. Generalmente es una tarea que requiere alguna operación repetitiva para cada imagen. Bueno, podemos automatizar fácilmente este proceso usando un código Python simple y algunas bibliotecas con él. Entonces, sin más preámbulos, veamos cómo aplicar cambios a todas las imágenes en una carpeta dada y guardarlas en alguna carpeta de destino usando Python PIL.
Instalemos todos los módulos requeridos –
pip3 install pillow pip3 install os-sys
Estaremos analizando todas las imágenes en la carpeta para aplicar cambios/operaciones a todas ellas simultáneamente.
# Code to apply operations on all the images # present in a folder one by one # operations such as rotating, cropping, from PIL import Image from PIL import ImageFilter import os def main(): # path of the folder containing the raw images inPath ="E:\\GeeksforGeeks\\images" # path of the folder that will contain the modified image outPath ="E:\\GeeksforGeeks\\images_rotated" for imagePath in os.listdir(inPath): # imagePath contains name of the image inputPath = os.path.join(inPath, imagePath) # inputPath contains the full directory name img = Image.open(inputPath) fullOutPath = os.path.join(outPath, 'invert_'+imagePath) # fullOutPath contains the path of the output # image that needs to be generated img.rotate(90).save(fullOutPath) print(fullOutPath) # Driver Function if __name__ == '__main__': main()
Imágenes de muestra de la carpeta –
Aporte :
Producción :
Publicación traducida automáticamente
Artículo escrito por amankrsharma3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA