Spaces:
Sleeping
Sleeping
File size: 1,725 Bytes
4cb9fb1 a2144e8 4cb9fb1 710a4db e263202 569d82a 9d4af34 e263202 4cb9fb1 5422deb 3aa04f0 4cb9fb1 83db2a6 03673d4 b163d7c 4cb9fb1 8116f44 4cb9fb1 ad6b211 4cb9fb1 |
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 |
import os
import gradio as gr
from PIL import Image
import torch
os.system(
'wget https://github.com/FanChiMao/CMFNet/releases/download/v0.0/deraindrop_DeRainDrop_CMFNet.pth -P experiments/pretrained_models')
def inference(img):
# os.system('mkdir test')
os.makedirs("./test", exist_ok=True)
basewidth = 512
wpercent = (basewidth / float(img.size[0]))
hsize = int((float(img.size[1]) * float(wpercent)))
img = img.resize((basewidth, hsize), Image.BILINEAR)
img.save("test/1.png", "PNG")
os.system(
'python main_test_CMFNet.py --input_dir test --weights experiments/pretrained_models/deraindrop_DeRainDrop_CMFNet.pth')
return 'results/1.png'
title = "Compound Multi-branch Feature Fusion for Image Restoration (Deraindrop)"
description = "Gradio demo for CMFNet. CMFNet achieves competitive performance on three tasks: image deblurring, image dehazing and image deraindrop. Here, we provide a demo for image deraindrop. To use it, simply upload your image, or click one of the examples to load them. Reference from: https://huggingface.co/akhaliq"
article = "<p style='text-align: center'><a href='https://' target='_blank'>Compound Multi-branch Feature Fusion for Real Image Restoration</a> | <a href='https://github.com/FanChiMao/CMFNet' target='_blank'>Github Repo</a></p> <center><img src='https://visitor-badge.glitch.me/badge?page_id=52Hz_CMFNet_deraindrop' alt='visitor badge'></center>"
examples = [['Rain4.png']]
gr.Interface(
inference,
[gr.components.Image(type="pil", label="Input")],
gr.components.Image(type="filepath", label="Output"),
title=title,
description=description,
article=article,
examples=examples
).launch(debug=True) |