From 451166c597beee69c5b0a0c8a2533d9f21d7f292 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Wed, 20 Mar 2024 10:30:39 +0100 Subject: [PATCH] Add rotation --- algorithms/context-adaptive_interpolator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/algorithms/context-adaptive_interpolator.py b/algorithms/context-adaptive_interpolator.py index d530224..b2fc477 100644 --- a/algorithms/context-adaptive_interpolator.py +++ b/algorithms/context-adaptive_interpolator.py @@ -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() \ No newline at end of file +image.rotate(-90).show() \ No newline at end of file