From b770bce4e469228575de47b311b7e4fa0f2be5c4 Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Mon, 12 Jan 2026 00:28:47 -0600 Subject: [PATCH] flipped Y axis compare --- 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 0a4d78c..d5866e3 100644 --- a/src/stitching_scanner.py +++ b/src/stitching_scanner.py @@ -264,8 +264,8 @@ class StitchingScanner: # Transition strips are at Y=0 to Y=transition_height # So transition bottom is around Y=(transition_height - overlap) to Y=transition_height - transition_compare_y_end = transition_height - transition_compare_y_start = max(0, transition_height - vertical_overlap) + transition_compare_y_start = transition_height + transition_compare_y_end = max(0, transition_height + vertical_overlap) # Frame's TOP should overlap with transition BOTTOM frame_top = frame[:vertical_overlap, :]