5
Matplotlib (pyplot) savefig gera uma imagem em branco
Estou tentando salvar plotagens feitas usando matplotlib; no entanto, as imagens são salvas em branco. Aqui está o meu código: plt.subplot(121) plt.imshow(dataStack, cmap=mpl.cm.bone) plt.subplot(122) y = copy.deepcopy(tumorStack) y = np.ma.masked_where(y == 0, y) plt.imshow(dataStack, cmap=mpl.cm.bone) plt.imshow(y, cmap=mpl.cm.jet_r, interpolation='nearest') if T0 is not None: plt.subplot(123) plt.imshow(T0, cmap=mpl.cm.bone) #plt.subplot(124) #Autozoom #else: #plt.subplot(124) …
175
python
image
matplotlib
figure