from scipy import misc画像の読み取りと保存

760 ワード

from scipy  import misc
def imread(name, flatten=False, mode=None)
    pass
"""
        array,uint8,"""
def imsave(name, arr, format=None):
    pass
"""
Save an array as an image.           0-255    
arr : ndarray, MxN or MxNx3 or MxNx4
        Array containing image values.  If the shape is ``MxN``, the array
        represents a grey-level image.  Shape ``MxNx3`` stores the red, green
        and blue bands along the last dimension.  An alpha layer may be
        included, specified as the last colour band of an ``MxNx4`` array.
"""

画像の読み取りと保存の関数は、次のように使用されます.
import imageio
imageio.imread()
imageio.imwrite()

各種pythonイメージライブラリの画像読取方法のまとめ