fixed y comp
This commit is contained in:
parent
84a698bff5
commit
e2b7fa70fe
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue