freealise commited on
Commit
5792f00
·
verified ·
1 Parent(s): 9cbafd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -9
app.py CHANGED
@@ -145,7 +145,7 @@ def logscale(linear):
145
  def linscale(linear):
146
  return int(math.log2(linear))
147
 
148
- def remove_bg(fl, count, md):
149
  global fl_
150
  fr = cv2.imread(fl).astype(np.uint8)
151
 
@@ -164,7 +164,7 @@ def remove_bg(fl, count, md):
164
  fr_diff = cv2.cvtColor(fr_diff, cv2.COLOR_BGR2GRAY)
165
 
166
  #md = 12
167
- bg = cv2.inRange(hsv, np.array([0,0,0]), np.array([180,255,md]))
168
  fr_diff[bg>0] = 0
169
  fr_diff[bg==0] = 255
170
 
@@ -234,7 +234,7 @@ def sortFiles(e):
234
  e = e.split('/')
235
  return e[len(e)-1]
236
 
237
- def loadf(f, r_bg, md):
238
  if f != None and f[0] != None:
239
  f.sort(key=sortFiles)
240
  fnew = []
@@ -245,7 +245,7 @@ def loadf(f, r_bg, md):
245
  fl = sharpest(fl, i)
246
 
247
  if r_bg == True:
248
- fl = remove_bg(fl, i, md)
249
  if i % 2: # odd: is photo without the flash
250
  fnew.append(fl)
251
  else:
@@ -289,8 +289,11 @@ with gr.Blocks() as demo:
289
  files_input = gr.File(file_count="multiple", visible=False)
290
  gallery_input = gr.Gallery(label="Slideshow", preview=True, columns=8192, interactive=False)
291
  r_bg = gr.Checkbox(label="Remove background", value=True)
292
- md = gr.Slider(minimum=0, maximum=255, step=1, value=12, label="Min color diff for foreground")
293
- files_orig.upload(fn=loadf, inputs=[files_orig, r_bg, md], outputs=[files_input, gallery_input])
 
 
 
294
 
295
  with gr.Row():
296
  interpolation_slider = gr.Slider(minimum=1, maximum=5, step=1, value=1, label="Interpolation Steps: ")
@@ -308,12 +311,12 @@ with gr.Blocks() as demo:
308
 
309
  gr.Examples(
310
  examples=[[
311
- ["./examples/0.png", "./examples/1.png", "./examples/2.png", "./examples/3.png", "./examples/4.png"], False, 0
312
  ], [
313
- ["./examples/0_flash.jpg", "./examples/1_noflash.jpg", "./examples/2_flash.jpg", "./examples/3_noflash.jpg"], True, 12
314
  ]],
315
  fn=loadf,
316
- inputs=[files_orig, r_bg, md],
317
  outputs=[files_input, gallery_input],
318
  cache_examples=True
319
  )
 
145
  def linscale(linear):
146
  return int(math.log2(linear))
147
 
148
+ def remove_bg(fl, count, mh, ms, md):
149
  global fl_
150
  fr = cv2.imread(fl).astype(np.uint8)
151
 
 
164
  fr_diff = cv2.cvtColor(fr_diff, cv2.COLOR_BGR2GRAY)
165
 
166
  #md = 12
167
+ bg = cv2.inRange(hsv, np.array([0,0,0]), np.array([mh,ms,md]))
168
  fr_diff[bg>0] = 0
169
  fr_diff[bg==0] = 255
170
 
 
234
  e = e.split('/')
235
  return e[len(e)-1]
236
 
237
+ def loadf(f, r_bg, mh, ms, md):
238
  if f != None and f[0] != None:
239
  f.sort(key=sortFiles)
240
  fnew = []
 
245
  fl = sharpest(fl, i)
246
 
247
  if r_bg == True:
248
+ fl = remove_bg(fl, i, mh, ms, md)
249
  if i % 2: # odd: is photo without the flash
250
  fnew.append(fl)
251
  else:
 
289
  files_input = gr.File(file_count="multiple", visible=False)
290
  gallery_input = gr.Gallery(label="Slideshow", preview=True, columns=8192, interactive=False)
291
  r_bg = gr.Checkbox(label="Remove background", value=True)
292
+ with gr.Accordion(label="Max differences for background", open=False):
293
+ mh = gr.Slider(minimum=0, maximum=180, step=1, value=180, label="Hue")
294
+ ms = gr.Slider(minimum=0, maximum=255, step=1, value=255, label="Saturation")
295
+ md = gr.Slider(minimum=0, maximum=255, step=1, value=12, label="Lightness")
296
+ files_orig.upload(fn=loadf, inputs=[files_orig, r_bg, mh, ms, md], outputs=[files_input, gallery_input])
297
 
298
  with gr.Row():
299
  interpolation_slider = gr.Slider(minimum=1, maximum=5, step=1, value=1, label="Interpolation Steps: ")
 
311
 
312
  gr.Examples(
313
  examples=[[
314
+ ["./examples/0.png", "./examples/1.png", "./examples/2.png", "./examples/3.png", "./examples/4.png"], False, 0, 0, 0
315
  ], [
316
+ ["./examples/0_flash.jpg", "./examples/1_noflash.jpg", "./examples/2_flash.jpg", "./examples/3_noflash.jpg"], True, 180, 255, 12
317
  ]],
318
  fn=loadf,
319
+ inputs=[files_orig, r_bg, mh, ms, md],
320
  outputs=[files_input, gallery_input],
321
  cache_examples=True
322
  )