forked from vitrivr/cineast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cineast.json
142 lines (136 loc) · 3.91 KB
/
cineast.json
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"database": {
"host": "localhost",
"selector": "COTTONTAIL",
"writer": "COTTONTAIL",
"port": 1865,
"plaintext": true
},
"benchmark": {
"mode": "OFF",
"path": "benchmarks"
},
"retriever": {
"threadPoolSize": 2,
"maxResults": 10000,
"resultsPerModule": 5000,
"features": {
"semantic" : [
{"feature": "ConceptMasksAde20k", "weight" : 1.0}
],
"globalcolor": [
{"feature": "AverageColor", "weight": 2.3},
{"feature": "MedianColor", "weight": 1.2},
{"feature": "AverageFuzzyHist", "weight": 0.7},
{"feature": "HueHistogram", "weight": 0.7},
{"feature": "MedianFuzzyHist", "weight": 1.3 }
],
"localcolor": [
{"feature": "AverageColorARP44", "weight": 0.5},
{"feature": "AverageColorARP44Normalized", "weight": 0.5},
{"feature": "SubDivMedianFuzzyColor", "weight": 0.85},
{"feature": "AverageColorGrid8", "weight": 1.8},
{"feature": "AverageColorGrid8Normalized", "weight": 1.8},
{"feature": "CLD", "weight": 1.3},
{"feature": "CLDNormalized", "weight": 1.3},
{"feature": "MedianColorGrid8", "weight": 1.7},
{"feature": "AverageColorRaster", "weight": 1.0}
],
"edge": [
{"feature": "EHD", "weight": 0.7},
{"feature": "DominantEdgeGrid16", "weight": 1.4},
{"feature": "DominantEdgeGrid8", "weight": 1.4}
],
"motion": [
{"feature": "SubDivMotionHistogram3", "weight": 0.5},
{"feature": "SubDivMotionHistogram5", "weight": 0.5},
{"feature": "SubDivMotionHistogramBackground3", "weight": 0.5},
{"feature": "SubDivMotionHistogramBackground5", "weight": 0.5}
],
"quantized": [
],
"localfeatures": [
{"feature": "HOGMirflickr25K512", "weight": 1.0}
],
"localfeatures_fast": [
{"feature": "HOGMirflickr25K256", "weight": 1.0}
],
"audiofingerprint": [
{"feature": "HPCP12Shingle", "weight": 1.0}
],
"tags": [
{"feature": "SegmentTags", "weight": 1.0}
],
"ocr": [
{"feature": "OCRSearch", "weight": 1.0}
],
"asr": [
{"feature": "AudioTranscriptionSearch", "weight": 1.0}
],
"scenecaption": [
{"feature": "DescriptionTextSearch", "weight": 1.0}
],
"objectInstances": [
{"feature": "ObjectInstances", "weight": 1.0}
],
"boolean": [
{
"feature": "RangeBooleanRetriever", "weight": 1.0,
"properties": {
"entity": "features_table_lsc20meta",
"attribute": "minute_id,utc_time,local_time,timezone,lat,lon,semantic_name,elevation,speed,heart,calories,activity_type,steps,p_utc_standard,p_local_standard,p_day_of_week,p_phase_of_day,p_year,p_month,p_hour,p_day"
}
}
]
}
},
"decoders": {
"VIDEO": {
"decoder": "FFMpegVideoDecoder",
"properties": {
"maxFrameWidth": 640,
"maxFrameHeight": 480
}
},
"IMAGE": {
"decoder": "DefaultImageDecoder",
"properties": {
"bounds": 1024
}
},
"AUDIO": {
"decoder": "FFMpegAudioDecoder",
"properties": {
"samplerate": 44100,
"channels": 2
}
}
},
"extractor": {
"threadPoolSize": 4,
"outputLocation": "out"
},
"api": {
"enableCLI": true,
"enableWebsocket": true,
"enableWebsocketSecure": false,
"enableRest": true,
"enableRestLiveDoc": true,
"enableRestSecure": false,
"enableLegacy": false,
"httpPort": 4567,
"httpsPort": 4568,
"legacyPort": 12345,
"threadPoolSize": 12,
"serveContent": false,
"serveUI": false,
"uiLocation": "../vitrivr-ng/dist",
"thumbnailLocation": "thumbnails",
"objectLocation": "objects",
"objectsFilesAreIDed": true
},
"monitoring":{
"enablePrometheus": false,
"prometheusPort": 4569
}
}