Skip to content

Commit 5701abd

Browse files
docs: explain why 3 was chosen
1 parent 38ba600 commit 5701abd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

igneous_cli/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ def normalize_encoding(encoding):
6262
return encoding
6363

6464
ENCODING_HELP = "Which image encoding to use. Options: [all] raw, png; [images] jpeg, jpegxl (jxl); [segmentations] compressed_segmentation (cseg), compresso (cpso), crackle (ckl); [floats] fpzip, kempressed, zfpc"
65-
ENCODING_EFFORT = 3
65+
# 2 or 3 is appropriate for lossless compression
66+
# of TEM images
67+
ENCODING_EFFORT = 3
6668

6769
def enqueue_tasks(ctx, queue, tasks):
6870
parallel = int(ctx.obj.get("parallel", 1))

0 commit comments

Comments
 (0)