-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.py
79 lines (54 loc) · 2.21 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import segmentation_pipeline as segp
trainInput = {
'rawData' : 'train-volume.tif',
'superpixels' : ('wsdt_interceptor_train.h5','data'),
'pmap' : ('interceptor_train.h5','data'),
'gt' : 'train-labels.tif',
}
testInput = {
'rawData' : 'test-volume.tif',
'superpixels' : ('wsdt_interceptor_test.h5','data'),
'pmap' : ('interceptor_test.h5','data'),
}
settings = {
'rootOutDir' : 'out',
##########################################################
# in case supervoxels are not providedragDir
##########################################################
'spSigmaHessian' : 3.0, # sigma for hessian of gaussian eigenvalues
'reduceBy': 15, # reduce #superpixel by this factor
# via agglomerative clustering
'sizeRegularizer' : 0.5, # sizeRegularizer term to overseg, ragFile, settings
# make apporx. equal size supervoxels
##########################################################
# edge gt threshold
##########################################################
'fuztGtThreshold': (0.2, 0.8),
##########################################################
# debug settings
##########################################################
'debug' : False,
##########################################################
# classifier local
##########################################################
'clfLocal' :{
'nRounds' : 500,
'maxDepth' : 3,
'getApproxError' : False # will get slower if True
},
##########################################################
# classifier lifterd
##########################################################
'clfLifted' :{
'nRounds' : 500,
'maxDepth' : 3,
'getApproxError' : False # will get slower if True
},
##########################################################
# lifted multicut solver / objective
##########################################################
'betaLocal' : 0.5,
'betaLifted' : 0.5,
'gamma' : 0.5, # higher gamma gives local weights more power
}
segp.runPipeline(trainInput=trainInput, testInput=testInput, settings=settings)