Skip to content

Commit

Permalink
just prettifying a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvillr committed Oct 17, 2023
1 parent d617c6c commit b4e35ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/vision/calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ def get_cell_dims(img: Image, top_left: (int, int)) -> (float, float):
cropped_array = np.array(cropped)
plt.imshow(cropped_array)
plt.show(block=False)
width = float(input('Please enter the width of a cell'))
height = float(input('Please enter the height of a cell'))
width = float(input('Please enter the width of a cell: '))
height = float(input('Please enter the height of a cell: '))

plt.close('all')
return (width, height)
Expand Down

0 comments on commit b4e35ec

Please sign in to comment.