python批量旋转图片(转)

首先感谢这篇文章的博主:https://blog.csdn.net/hjxu2016/article/details/79536129

import scipy
from scipy import misc
import os
import time
import glob
from scipy import ndimage

def get_image_paths(folder):
    return glob.glob(os.path.join(folder, '*.jpg'))

def create_read_img(filename):
    im = misc.imread(filename)
    img_rote_90 = ndimage.rotate(im, 90)
    scipy.misc.imsave(filename[:-4]+'_90.jpg',img_rote_90)

    img_rote_180 = ndimage.rotate(im, 180)
    scipy.misc.imsave(filename[:-4]+'_180.jpg',img_rote_180)

    img_rote_270 = ndimage.rotate(im, 270)
    scipy.misc.imsave(filename[:-4]+'_270.jpg',img_rote_270)
    print(filename)
img_path = 'C:/Users/xx/xx/123/'  #这个路径是所有图片在的位置
imgs = get_image_paths(img_path)
print (imgs)

for i in imgs:
    create_read_img(i)

###最后图片保存位置也是自己的刚才的路径

 

这是运行的效果:

python批量旋转图片(转)_第1张图片

 

这是旋转以后的图片:

python批量旋转图片(转)_第2张图片

 

我也不知道怎么不保存在同一个文件夹中,目前这样的代码就是保存在同一个文件夹下。如果你们知道,欢迎留言。笔芯~

小白成长之路,不断更新~一起加油,emmmm....强打一波鸡血

 

你可能感兴趣的:(数据增强)