emilios commited on
Commit
fd89db2
·
verified ·
1 Parent(s): 57ee83f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -18,8 +18,9 @@ def inference(img):
18
 
19
  #out = processed
20
  #edges = get_edges(img.copy())
21
- edges = feature.canny(out, sigma=3) # edge detect via canny with sigma 3
22
- out = morphology.remove_small_objects(label(edges), 2,) # noise_reduced
 
23
 
24
 
25
  # black out pixels
@@ -30,7 +31,7 @@ def inference(img):
30
 
31
 
32
  #return img
33
- return edges
34
 
35
  # For information on Interfaces, head to https://gradio.app/docs/
36
  # For user guides, head to https://gradio.app/guides/
 
18
 
19
  #out = processed
20
  #edges = get_edges(img.copy())
21
+ #edges = feature.canny(out, sigma=3) # edge detect via canny with sigma 3
22
+ #out = morphology.remove_small_objects(label(edges), 2,) # noise_reduced
23
+ out = morphology.remove_small_objects( img , 2,) # noise_reduced
24
 
25
 
26
  # black out pixels
 
31
 
32
 
33
  #return img
34
+ return out
35
 
36
  # For information on Interfaces, head to https://gradio.app/docs/
37
  # For user guides, head to https://gradio.app/guides/