7 lines
208 B
Python
7 lines
208 B
Python
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
|
|
npArray = np.load('mean_rafael_arw_png_sky_wavelet.npy')
|
|
npArrayMin = npArray.min()
|
|
print(f'{npArrayMin=}')
|
|
plt.imsave('np_array.png', npArray - npArrayMin) |