fixed y comp

This commit is contained in:
2ManyProjects 2026-01-12 00:50:02 -06:00
parent 84a698bff5
commit e2b7fa70fe

View file

@ -342,8 +342,8 @@ class StitchingScanner:
# For LEFT scan: frame starts at the transition X position # For LEFT scan: frame starts at the transition X position
# Compare frame's RIGHT edge with mosaic's transition strip RIGHT edge # Compare frame's RIGHT edge with mosaic's transition strip RIGHT edge
transition_x_end = x_offset transition_x_start = x_offset
transition_x_start = min(x_offset, x_offset - horizontal_overlap) transition_x_end = max(x_offset, x_offset + horizontal_overlap)
# Y range: within the transition strip area # Y range: within the transition strip area
y_start = 0 y_start = 0