8 lines
206 B
Python
8 lines
206 B
Python
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
|
|
fileName = 'mean_flat-field_nef_wavelet_blue'
|
|
npArray = np.load(f'{fileName}.npy')
|
|
plt.imsave(f'{fileName}.png', npArray)
|
|
#plt.imshow(npArray)
|
|
#plt.show() |