Make x-axis logarithmic

This commit is contained in:
2024-03-26 02:32:03 +01:00
parent 2bc13c5949
commit cfe718da7d

View File

@@ -48,6 +48,7 @@ def showImageWithMatplotlib(npArray):
plt.title('RMS between actual PRNU and the mean of the first $N$ images with PRNU (i.e. estimated PRNU)')
plt.xlabel('$N$ first images with PRNU')
plt.ylabel('RMS')
plt.xscale('log')
rmss = []
mean = np.zeros(IMAGE_SIZE_SHAPE)
for imageIndex in range(NUMBER_OF_IMAGES_PER_PHONE):