forked from Cloud-CV/object-proposals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
119 lines (99 loc) · 1.6 KB
/
config.json.example
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"imageLocation": "/workspace/imageLocation/",
"outputLocation": "/workspace/outputLocation/",
"edgeBoxes":{
"opts" : {
"isBaseline" : false,
"order": "descend"
},
"params" : {
"alpha": 0.65,
"beta": 0.75,
"minScore": 0.01,
"maxBoxes": 1e4,
"edgeMinMag": 0.1,
"edgeMergeThr": 0.5,
"clusterMinMag": 0.5,
"maxAspectRatio": 3,
"minBoxArea": 1000,
"gamma": 2,
"kappa": 1.5
}
},
"endres" : {
"opts" : {
"isBaseline" : false,
"order": "none"
},
"params":{
}
},
"mcg" : {
"opts": {
"boostpath" : "/opt/local/include/",
"isBaseline" : false,
"order": "descend",
"mode": "fast"
},
"params" : {
"mode" : "accurate",
"database": "pascal2012"
}
},
"objectness" : {
"opts" : {
"isBaseline" : false,
"order": "descend"
},
"params":{
}
},
"rahtu" : {
"opts" : {
"isBaseline" : false,
"order": "none"
},
"params":{
}
},
"randomPrim": {
"opts" : {
"isBaseline" : false,
"order": "none"
},
"params":{
}
},
"rantalankila" : {
"opts" : {
"isBaseline" : false,
"order": "none"
},
"params":{
}
},
"selective_search" : {
"opts" : {
"isBaseline" : false,
"order": "ascend"
},
"params": {
"ks" :[50, 100],
"sigma":0.8,
"minBoxWidth":20,
"imWidth":500,
"mode":"fast",
"colorTypes": ["Hsv", "Lab", "RGI", "H", "Intensity"]
}
},
"rigor" : {
"opts" : {
"numProposals" : 100,
"isbaseline" : false,
"order": "none"
},
"params": {
"param_set" : "@params_default"
}
}
}