From c8e6a1f5063b2a880e306368ae8aeeae912a58e0 Mon Sep 17 00:00:00 2001 From: 2ManyProjects Date: Thu, 8 Jan 2026 22:06:04 -0600 Subject: [PATCH] vfertical at x style rewrite --- 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 60010e1..3bd31e1 100644 --- a/src/stitching_scanner.py +++ b/src/stitching_scanner.py @@ -348,12 +348,12 @@ class StitchingScanner: strip_end = min(h, append_height + BLEND_WIDTH) new_strip = frame[:strip_end:, :] self.mosaic = self._blend_vertical_at_x( - self.mosaic, new_strip, BLEND_WIDTH, append_below=False, x_offset=int(self.state.current_x)) + self.mosaic, new_strip, BLEND_WIDTH, append_below=False, x_off=int(self.state.current_x)) else: strip_start = max(0, h - append_height - BLEND_WIDTH) new_strip = frame[:strip_start, :] self.mosaic = self._blend_vertical_at_x( - self.mosaic, new_strip, BLEND_WIDTH, append_below=True, x_offset=int(self.state.current_x)) + self.mosaic, new_strip, BLEND_WIDTH, append_below=True, x_off=int(self.state.current_x)) self._displacement_since_append_x = 0.0 self._displacement_since_append_y = fractional_remainder