Skip to content

Commit

Permalink
Update fill factor to 0.85 for tiling. Remove 10x10 tiling configurat…
Browse files Browse the repository at this point in the history
…ion. (#290)
  • Loading branch information
jmcoreymv authored Oct 17, 2023
1 parent fbbb3c5 commit 943cd4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lumaviewpro.kv
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,7 @@
text_autoupdate: True
on_text: root.select_tiling_size()
#text: '1x1'
values: '1x1', '2x2', '3x3', '4x4', '5x5', '6x6', '7x7', '8x8', '9x9', '10x10'
values: '1x1', '2x2', '3x3', '4x4', '5x5', '6x6', '7x7', '8x8', '9x9'


# # Z-stack
Expand Down Expand Up @@ -1310,7 +1310,7 @@
# text_autoupdate: True
# on_text: root.select_tiling_size()
# #text: '1x1'
# values: '1x1', '2x2', '3x3', '4x4', '5x5', '6x6', '7x7', '8x8', '9x9', '10x10'
# values: '1x1', '2x2', '3x3', '4x4', '5x5', '6x6', '7x7', '8x8', '9x9'



Expand Down
2 changes: 1 addition & 1 deletion lumaviewpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -2592,7 +2592,7 @@ def select_tiling_size(self):

fov_size_x = um_per_pixel * settings['frame']['width']
fov_size_y = um_per_pixel * settings['frame']['height']
fillfactor = 0.75 # this is to ensure some of the tile images overlap.
fillfactor = 0.85 # this is to ensure some of the tile images overlap.
# TODO this should be a setting in the gui
#print(magnification)
#print(settings['frame']['width'])
Expand Down

0 comments on commit 943cd4c

Please sign in to comment.