Files
Robust_image_source_identif…/datasets/raise/show_mean_noise.py
2024-04-09 03:43:17 +02:00

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)