Invert red
This commit is contained in:
parent
193e7b58ec
commit
4c261b895b
1 changed files with 1 additions and 1 deletions
|
|
@ -696,7 +696,7 @@ class StitchingScanner:
|
||||||
|
|
||||||
# ========== DEBUG: Draw borders BEFORE placing strip ==========
|
# ========== DEBUG: Draw borders BEFORE placing strip ==========
|
||||||
# RED border: Where strip WOULD have been placed (original position)
|
# RED border: Where strip WOULD have been placed (original position)
|
||||||
orig_x_end = min(original_x_offset + w_strip, w_base)
|
orig_x_end = min(original_x_offset - w_strip, w_base)
|
||||||
orig_y_end = min(original_y_offset + h_strip, h_base)
|
orig_y_end = min(original_y_offset + h_strip, h_base)
|
||||||
if original_x_offset >= 0 and original_y_offset >= 0:
|
if original_x_offset >= 0 and original_y_offset >= 0:
|
||||||
cv2.rectangle(result,
|
cv2.rectangle(result,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue