python如何将图片进行批量灰度化
1、打开idle也就是Python的shell界面。

3、编写一个灰度化处理的函数:def convert_to_gray(f, **args): image = io.imread(f) image = color.rgb2gray(image) return image

5、接着,将对应目录下的图片集合进行批量的灰度化。coll = io.ImageCollection(str,load_func=convert_to_gray)


声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
阅读量:30
阅读量:35
阅读量:58
阅读量:86
阅读量:46