strip width

This commit is contained in:
2ManyProjects 2026-01-10 02:11:37 -06:00
parent d128808a07
commit afd5e8a14c

View file

@ -223,7 +223,7 @@ class StitchingScanner:
self.log(f" Placing strip at X={strip_x_start}:{strip_x_end}, Y={y_offset}:{y_offset + h_strip}") self.log(f" Placing strip at X={strip_x_start}:{strip_x_end}, Y={y_offset}:{y_offset + h_strip}")
self.log(f" Actual strip width: {actual_strip_width}") self.log(f" Actual strip width: {actual_strip_width}")
if actual_strip_width <= blend_w: if abs(actual_strip_width) <= blend_w:
self.log(f" Strip too narrow, skipping") self.log(f" Strip too narrow, skipping")
return result return result