Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)
|