Spaces:
Sleeping
Sleeping
RubenRicapa
commited on
Commit
•
84f5fe8
1
Parent(s):
d4c3128
Update app.py
Browse files
app.py
CHANGED
@@ -84,9 +84,10 @@ async def predict(data: InputData):
|
|
84 |
|
85 |
if respuesta.status_code != 200:
|
86 |
raise HTTPException(status_code=400, detail="No se pudo descargar la imagen")
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
90 |
# Convertir la imagen descargada a un array de NumPy
|
91 |
B = representativo(imagen_temporal)
|
92 |
w = som.winner(B)
|
|
|
84 |
|
85 |
if respuesta.status_code != 200:
|
86 |
raise HTTPException(status_code=400, detail="No se pudo descargar la imagen")
|
87 |
+
img = cv2.imread(imagen_temporal, cv2.IMREAD_GRAYSCALE)
|
88 |
+
resized = cv2.resize(img, (256, 256), interpolation=cv2.INTER_AREA)
|
89 |
+
imagen_normalizada = resized.astype(np.float32) / 255.0
|
90 |
+
cv2.imwrite(imagen_temporal, imagen_normalizada)
|
91 |
# Convertir la imagen descargada a un array de NumPy
|
92 |
B = representativo(imagen_temporal)
|
93 |
w = som.winner(B)
|