Skip to content

Commit

Permalink
Changed x3 dimension
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarah Mallepalle committed Jan 18, 2019
1 parent 5d4d992 commit 71e2fa4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions undistort_field.py
Expand Up @@ -129,8 +129,8 @@ def clean_field_70(image):

x0 = 33
x1 = 0
x2 = 1366
x3 = 1394
x2 = 1362
x3 = max(img.size[0], 1394)

l10 = ((x0, 520), (x1, 503))
r10 = ((x2, 520), (x3, 505))
Expand Down Expand Up @@ -182,8 +182,8 @@ def clean_field_50(image):

x0 = 33
x1 = 0
x2 = 1333
x3 = 1362
x2 = 1331
x3 = max(img.size[0], 1362)

l10 = ((x0, 476), (x1, 455))
r10 = ((x2, 476), (x3, 457))
Expand Down

0 comments on commit 71e2fa4

Please sign in to comment.