Turing311 commited on
Commit
3a473ae
1 Parent(s): 5dfe154
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -118,8 +118,8 @@ def compare_face():
118
  "data": {
119
  "result": result,
120
  "similarity": float(similarity),
121
- "face1": {"x1": faceRect1[0], "y1": faceRect1[1], "x2": faceRect1[2], "y2" : faceRect1[3]},
122
- "face2": {"x1": faceRect2[0], "y1": faceRect2[1], "x2": faceRect2[2], "y2" : faceRect2[3]},
123
  }
124
  })
125
 
@@ -204,8 +204,8 @@ def coompare_face_base64():
204
  "data": {
205
  "result": result,
206
  "similarity": float(similarity),
207
- "face1": {"x1": faceRect1[0], "y1": faceRect1[1], "x2": faceRect1[2], "y2" : faceRect1[3]},
208
- "face2": {"x1": faceRect2[0], "y1": faceRect2[1], "x2": faceRect2[2], "y2" : faceRect2[3]},
209
  }
210
  })
211
  response.status_code = 200
 
118
  "data": {
119
  "result": result,
120
  "similarity": float(similarity),
121
+ "face1": {"x1": int(feature2[0]), "y1": int(faceRect1[1]), "x2": int(faceRect1[2]), "y2" : int(faceRect1[3])},
122
+ "face2": {"x1": int(faceRect2[0]), "y1": int(faceRect2[1]), "x2": int(faceRect2[2]), "y2" : int(faceRect2[3])},
123
  }
124
  })
125
 
 
204
  "data": {
205
  "result": result,
206
  "similarity": float(similarity),
207
+ "face1": {"x1": int(faceRect1[0]), "y1": int(faceRect1[1]), "x2": int(faceRect1[2]), "y2" : int(faceRect1[3])},
208
+ "face2": {"x1": int(faceRect2[0]), "y1": int(faceRect2[1]), "x2": int(faceRect2[2]), "y2" : int(faceRect2[3])},
209
  }
210
  })
211
  response.status_code = 200