You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented a script MS_AS_NeuroProofSegmentation2D.py, which performs NeuroProof-style 2D segmentation. Updated a script MS_AS_GalaSegmentation2D.py that performs GALA-style 2D segmentation. Added or modified a number of utility scripts
parser.add_option("-f", "--fracBlack", dest="fracBlack", help="fracBlack for detecting neurons (default=automatic)",metavar="fracBlack", default=None)
19
19
parser.add_option("-F", "--fracBlack2",dest="fracBlack2",help="fracBlack for detect. dark str.",metavar="fracBlack2",default=None)
20
20
parser.add_option("-i","--uint_type",dest="uint",help="8,16,32 or 64",metavar="uint",default="16")
21
-
parser.add_option("-l", "--nlen", dest="nlen", help="# of subsections for processing a fragment in y (length) direction",metavar="nlen", default="1")
22
-
parser.add_option("-m", "--maxsize",dest="msize", help="# of subsections for processing a fragment in y (length) direction",metavar="nlen",default=sys.maxint)
21
+
parser.add_option("-l", "--nlen", dest="ysecit", help="# of subsections for adaptive thresholding in y (length) direction",metavar="nlen", default="1")
22
+
parser.add_option("-M", "--memb_prob",dest="memb_prob", help="HDF5 file or a folder of files containing membrane probabilities",\
23
+
metavar="memb_prob",default="")
24
+
parser.add_option("-m", "--mito_prob",dest="mito_prob",help="HDF5 file or a folder of files containing mitoch. probabilities",\
25
+
metavar="mito_prob",default="")
26
+
parser.add_option("-N", "--maxsize",dest="msize", help="# of subsections for processing a fragment in y (length) direction",metavar="nlen",default=sys.maxint)
23
27
parser.add_option("-n", "--node", dest="node", help="id of the cluster node to be used", metavar="node", default=0)
parser.add_option("-S", "--slots",dest="num_slots", help="# of cluster slots per 1 job (default=1)", metavar="num_slots", default=1)
30
34
parser.add_option("-U", "--unprocessed",action="store_true",dest="unprocessed", help="reprocess only the data for which an output file does not exist",default=False)
31
35
parser.add_option("-v", "--verbose",action="store_true",dest="verbose",help="increase the verbosity level of output",default=False)
32
-
parser.add_option("-w", "--nwid", dest="nwid", help="# of subsections for processing a fragment in x (width) direction", metavar="nwid", default="1")
36
+
parser.add_option("-w", "--nwid", dest="nwid", help="# of subsections for adaptive thresholding in x (width) direction", metavar="nwid", default="1")
33
37
parser.add_option("-X", "--nx", dest="nx", help="# of image fragments in x direction", metavar="nx", default=1)
34
38
parser.add_option("-Y", "--ny", dest="ny", help="# of image fragments in y direction", metavar="ny", default=1)
35
39
parser.add_option("-x", "--dx", dest="dx", help="# of scans for fragment overlap in x direction", metavar="dx", default=50)
parser.add_option("-p", "--processing_start",dest="processing_start",help="start processing from probs(=1) or segm(=2)",\
251
+
metavar="processing_start",default=1)
252
+
parser.add_option("-P", "--processing_end",dest="processing_end",help="complete processing at step probs(=1) or segm(=2) ",\
253
+
metavar="processing_end",default=2)
254
+
parser.add_option("-T", "--training_labels", dest="training_labels_dir", help="folder of groundtruth labels images", default="")
255
+
parser.add_option("-t", "--training_raw",dest="training_raw_dir",help="folder of raw/grayscale training images",metavar="training_raw_dir", default="")
256
+
parser.add_option("-v", "--verbose",action="store_true",dest="verbose",help="increase the verbosity level of output",default=False)
257
+
parser.add_option("-z", "--zmin",dest="zmin",help="min z-layer for training", metavar="zmin", default=0)
258
+
parser.add_option("-Z", "--zmax",dest="zmax",help="max z-layer for training", metavar="zmax", default=sys.maxint)
0 commit comments