Skip to content

Commit

Permalink
Use zlib compression by default when creating tiffs
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzamuto committed Jun 9, 2022
1 parent 408ab78 commit 1997d32
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions zetastitcher/fuse/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ def parse_args():

group.add_argument('-c', '--ch', type=int, dest='channel', help='channel')

group.add_argument('-c', type=str, default=0, dest='compression',
choices=[str(i) for i in range(10)] + ['lzma'],
help='compression')
group.add_argument('--compression', type=str, default='zlib', help='int or string')

group.add_argument('--downsample-xy', metavar='S', type=int, required=False,
help='downsample XY plane by factor S')

Expand Down

0 comments on commit 1997d32

Please sign in to comment.