We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675fcd2 commit efd1bf3Copy full SHA for efd1bf3
tflite-server.py
@@ -78,7 +78,7 @@ def predict_face():
78
continue
79
single_face = {}
80
single_face["confidence"] = float(scores[i])
81
- single_face["label"] = "face"
+ single_face["userid"] = "unknown"
82
single_face["y_min"] = int(float(boxes[i][0]) * image_height)
83
single_face["x_min"] = int(float(boxes[i][1]) * image_width)
84
single_face["y_max"] = int(float(boxes[i][2]) * image_height)
0 commit comments