From 222e47ccfd89d90f055abcca1f3000269cee206f Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Sat, 10 Jan 2026 13:33:03 -0600 Subject: [PATCH] invert x offset --- src/stitching_scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stitching_scanner.py b/src/stitching_scanner.py index def7abc..275d652 100644 --- a/src/stitching_scanner.py +++ b/src/stitching_scanner.py @@ -215,7 +215,7 @@ class StitchingScanner: # Clamp x_offset to valid range # x_offset = max(0, min(x_offset, w_base - blend_w)) - x_offset = min(x_offset, w_base) + x_offset = 0 - min(x_offset, w_base) # Handle strip cropping if y_offset is negative (strip protrudes above frame) strip_y_start = 0 # How much to crop from top of strip