Overglitch commited on
Commit
1da900d
·
verified ·
1 Parent(s): ee440e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -69,6 +69,7 @@ async def predict_fingerprint_api(file: UploadFile = File(...)):
69
  contents = await file.read()
70
  image = Image.open(BytesIO(contents)).convert('L')
71
  image = np.asarray(image)
 
72
  print(f"ARRAY{image.size}:\n\n\n{image}")
73
  representative_data = representativo(image)
74
  representative_data = representative_data.reshape(1, -1)
 
69
  contents = await file.read()
70
  image = Image.open(BytesIO(contents)).convert('L')
71
  image = np.asarray(image)
72
+ image = image.reshape(256, 256, 1)
73
  print(f"ARRAY{image.size}:\n\n\n{image}")
74
  representative_data = representativo(image)
75
  representative_data = representative_data.reshape(1, -1)