Add show_mean_noise.py

This commit is contained in:
2024-04-03 22:18:18 +02:00
parent b354f59ac5
commit 606821d45e
2 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
import numpy as np
import matplotlib.pyplot as plt
npArray = np.load('mean.npy')
npArrayMin = npArray.min()
print(f'{npArrayMin=}')
plt.imsave('np_array.png', npArray - npArrayMin)