Spaces:
Sleeping
Sleeping
Henry Scheible
commited on
Commit
·
d52aa07
1
Parent(s):
b269b52
remove unnecessary argument in app.py
Browse files- .gitignore +2 -1
- app.py +1 -1
.gitignore
CHANGED
@@ -1,3 +1,4 @@
|
|
1 |
.DS_Store
|
2 |
venv/
|
3 |
-
__pycache__/
|
|
|
|
1 |
.DS_Store
|
2 |
venv/
|
3 |
+
__pycache__/
|
4 |
+
wandb/
|
app.py
CHANGED
@@ -94,7 +94,7 @@ def check_circularity(segmentation):
|
|
94 |
else:
|
95 |
return circularity
|
96 |
|
97 |
-
def count_barnacles(image_raw,
|
98 |
progress(0, desc="Finding bounding wire")
|
99 |
|
100 |
corners = wireframe_extractor(image_raw)
|
|
|
94 |
else:
|
95 |
return circularity
|
96 |
|
97 |
+
def count_barnacles(image_raw, progress=gr.Progress()):
|
98 |
progress(0, desc="Finding bounding wire")
|
99 |
|
100 |
corners = wireframe_extractor(image_raw)
|