在Python

时间:2016-12-14 08:41:13

标签: python image scipy

我想使用scipy.misc将二维数组转换为python中的图像。以下是我想要实现的一个例子

import numpy as np
from scipy.misc import toimage, imsave

L = 20      # one side of lattice
N = L*L     # number of sites in the lattice
xs = np.zeros((L,L), float)

x = []
for n in range(100):
    for i in range(L):
        for j in range(L):
            xs[i,j] = np.random.uniform(0.1, 0.9)
            x.append(xs)

在这段代码中,对于每个n值,我得到一个xs的二维数组,我将其存储在列表x中。不是为x中的每个n存储2D数组xs,我如何将其转换为Color RGB图像,其中x在0.1和0.9之间的每个值将用不同的颜色表示?

1 个答案:

答案 0 :(得分:0)

global_step