swzamir commited on
Commit
6cbfd74
1 Parent(s): cdef45b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -54,18 +54,18 @@ def inference(img,task):
54
 
55
  if task == 'Motion Deblurring':
56
  task = 'Motion_Deblurring'
57
- os.system("python demo_gradio.py --task 'Motion_Deblurring' --input_path './temp/image.jpg' --result_dir './temp/'")
58
 
59
  if task == 'Defocus Deblurring':
60
  task = 'Single_Image_Defocus_Deblurring'
61
- os.system("python demo_gradio.py --task 'Single_Image_Defocus_Deblurring' --input_path './temp/image.jpg' --result_dir './temp/'")
62
 
63
  if task == 'Denoising':
64
  task = 'Real_Denoising'
65
- os.system("python demo_gradio.py --task 'Real_Denoising' --input_path './temp/image.jpg' --result_dir './temp/'")
66
 
67
  if task == 'Deraining':
68
- os.system("python demo_gradio.py --task 'Deraining' --input_path './temp/image.jpg' --result_dir './temp/'")
69
 
70
  return f'temp/{task}/image.jpg'
71
 
 
54
 
55
  if task == 'Motion Deblurring':
56
  task = 'Motion_Deblurring'
57
+ os.system("python demo_gradio.py --task 'Motion_Deblurring' --input_path 'temp/image.jpg' --result_dir './temp/'")
58
 
59
  if task == 'Defocus Deblurring':
60
  task = 'Single_Image_Defocus_Deblurring'
61
+ os.system("python demo_gradio.py --task 'Single_Image_Defocus_Deblurring' --input_path 'temp/image.jpg' --result_dir './temp/'")
62
 
63
  if task == 'Denoising':
64
  task = 'Real_Denoising'
65
+ os.system("python demo_gradio.py --task 'Real_Denoising' --input_path 'temp/image.jpg' --result_dir './temp/'")
66
 
67
  if task == 'Deraining':
68
+ os.system("python demo_gradio.py --task 'Deraining' --input_path 'temp/image.jpg' --result_dir './temp/'")
69
 
70
  return f'temp/{task}/image.jpg'
71