Add rotation

This commit is contained in:
2024-03-20 10:30:39 +01:00
parent 58f02b6c7c
commit 451166c597

View File

@@ -23,4 +23,4 @@ for m in range(1, image.size[0] - 1):
if max(A) - min(A) <= THRESHOLD:
newI[m, n] = int(round(I[m, n] - mean(A), 0))
image.show()
image.rotate(-90).show()