您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍python可以使用什么包实现批量读取图片,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
python中可以使用multiprocessing库实现批量读取图片。
multiprocessing包是Python中的多进程管理包。与threading.Thread类似,它可以利用multiprocessing.Process对象来创建一个进程。
实现代码如下:
#coding=utf-8 ''''' #==================== #测试一下进程 #==================== ''' from multiprocessing import Pool import scipy from scipy import misc import os import time import glob from scipy import ndimage start = time.time() def get_image_paths(folder): #这个函数的作用的获取文件的列表,注释部分是获取 # return (os.path.join(folder, f) # for f in os.listdir(folder) # if 'png' in f) return glob.glob(os.path.join(folder, '*.png')) def create_read_img(filename): im = misc.imread(filename) #读取图像 img_rote = ndimage.rotate(im, 90) #旋转90度 #scipy.misc.imsave('...',img_rote) img_path = '存放图像的目录/' imgs = get_image_paths(img_path) print imgs pool = Pool() pool.map(create_read_img,imgs) pool.close() pool.join() # for i in imgs: # create_read_img(i) 这部分是循环,可以用来对比时间 end = time.time() print end - start
以上是python可以使用什么包实现批量读取图片的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。