From e2b7fa70fe2d02274fff5371a8b596c03997034f Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Mon, 12 Jan 2026 00:50:02 -0600 Subject: [PATCH] fixed y comp --- src/stitching_scanner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stitching_scanner.py b/src/stitching_scanner.py index 8c1f484..5d38176 100644 --- a/src/stitching_scanner.py +++ b/src/stitching_scanner.py @@ -342,8 +342,8 @@ class StitchingScanner: # For LEFT scan: frame starts at the transition X position # Compare frame's RIGHT edge with mosaic's transition strip RIGHT edge - transition_x_end = x_offset - transition_x_start = min(x_offset, x_offset - horizontal_overlap) + transition_x_start = x_offset + transition_x_end = max(x_offset, x_offset + horizontal_overlap) # Y range: within the transition strip area y_start = 0