上传者: 38693192
|
上传时间: 2022-03-26 19:59:07
|
文件大小: 101KB
|
文件类型: -
如下所示:
# coding=gbk
from PIL import Image
import numpy as np
# import scipy
def loadImage():
# 读取图片
im = Image.open("lena.jpg")
# 显示图片
im.show()
im = im.convert("L")
data = im.getdata()
data = np.matrix(data)
# print data
# 变换成512*512
data = np.reshape(data,(512,512))
new_im = Image.from