Spaces:
Runtime error
Runtime error
File size: 1,627 Bytes
49569aa 0e5fe2b 8f49ade 1bca832 1672592 13c2fb7 e483431 c9a49d0 efb46c1 c9a49d0 5b48c26 c9a49d0 e96497b 5b48c26 3a7fb02 5b48c26 e96497b fb06ac4 d4362c8 feb06d2 6462304 feb06d2 5b48c26 a17b778 feb06d2 5b48c26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
import os
os.system("pip install --upgrade httpx")
os.system("pip install --upgrade gradio")
os.system("pip install opencv-python")
os.system("pip install torch")
os.system("pip install --upgrade pillow")
os.system("pip install numpy")
import gradio as gr
from PIL import Image
import torch
import numpy as np
# Instalar paquetes necesarios
os.system("pip install --upgrade httpx gradio opencv-python torch pillow numpy")
# Descargar modelo pre-entrenado
os.system('wget https://github.com/JingyunLiang/SwinIR/releases/download/v0.0/003_realSR_BSRGAN_DFO_s64w8_SwinIR-M_x4_GAN.pth -P experiments/pretrained_models')
def inference(img):
try:
# Verificar si la entrada es una imagen v谩lida
if not isinstance(img, Image.Image):
return "Error: La entrada no es una imagen v谩lida. Por favor, proporcione una imagen v谩lida."
# Redimensionar la imagen
basewidth = 256
wpercent = basewidth / float(img.width)
hsize = int(float(img.height) * float(wpercent))
img_resized = img.resize((basewidth, hsize))
# L贸gica para mejorar la resoluci贸n de la imagen
# (Puedes agregar tu l贸gica aqu铆)
# Devolver la imagen procesada
return img_resized
except Exception as e:
return "Error: Ha ocurrido un error durante el procesamiento de la imagen. Por favor, int茅ntelo de nuevo con una imagen diferente."
iface = gr.Interface(
fn=inference,
inputs="image",
outputs="image",
title="Mejorar Resoluci贸n de Imagen",
description="Sube una imagen y mejora su resoluci贸n."
)
iface.launch(debug=True)
|