Add rotation

This commit is contained in:
Benjamin Loison 2024-03-20 10:30:39 +01:00
parent 58f02b6c7c
commit 451166c597
Signed by: Benjamin_Loison
SSH Key Fingerprint: SHA256:BtnEgYTlHdOg1u+RmYcDE0mnfz1rhv5dSbQ2gyxW8B8

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()