Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
elerac committed Aug 15, 2020
1 parent 560a870 commit 625753c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/capture_x.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main():
cap = cv2.VideoCapture(1) # External web camera
gray = sl.Gray()

# Generate and Decode x-coorde
# Generate and Decode x-coord
# Generate
imlist_posi_pat = gray.generate((width, height))
imlist_nega_pat = sl.invert(imlist_posi_pat)
Expand Down
4 changes: 2 additions & 2 deletions examples/capture_xy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def main():
gray = sl.Gray()


# Generate and Decode x-coorde
# Generate and Decode x-coord
# Generate
imlist_posi_x_pat = gray.generate((width, height))
imlist_nega_x_pat = sl.invert(imlist_posi_x_pat)
Expand All @@ -33,7 +33,7 @@ def main():
img_index_x = gray.decode(imlist_posi_x_cap, imlist_nega_x_cap)


# Generate and Decode y-coorde
# Generate and Decode y-coord
# Generate
imlist = gray.generate((height, width))
imlist_posi_y_pat = sl.transpose(imlist)
Expand Down

0 comments on commit 625753c

Please sign in to comment.