-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathconfig.json
39 lines (39 loc) · 1.4 KB
/
config.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
{
"objDetServer": {
"comment": "Configuration for object detector server",
"objModelPath": "./models/mobilenet_ssd_v2_coco_quant_postprocess_edgetpu.tflite",
"labelMapPath": "./labels/coco_labels.txt",
"conseqImagesToSkip": 0,
"minScore": 0.8,
"zerorpcPipe": "tcp://192.168.1.131:1234"
},
"faceDetServer": {
"comment": "Configuration for face recognizer server",
"faceDetModelPath": "./models/mobilenet_ssd_v2_face_quant_postprocess_edgetpu.tflite",
"faceEmbModelPath": "./models/nn4.v2.t7",
"modelPath": "./models/svm_face_recognizer.pickle",
"labelPath": "./labels/face_labels.pickle",
"minProba": 0.6,
"focusMeasureThreshold": 200,
"minFace": 20,
"numJitters": 10,
"zerorpcPipe": "tcp://192.168.1.131:1235"
},
"personClassServer": {
"comment": "Configuration for person classifier server",
"personClassModelPath": "./models/ResNet50-person-classifier-quant_edgetpu.tflite",
"labelMap": [
"Unknown",
"eva_st_angel",
"lindo_st_angel",
"nico_st_angel",
"nikki_st_angel"
],
"minProba": 0.7,
"zerorpcPipe": "tcp://192.168.1.131:1235"
},
"comment": "Global configuration parameters",
"recognizeMode": "person",
"mountPoint": "/mnt",
"zerorpcHeartBeat": 60000
}