Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,9 +53,9 @@ examples = [
|
|
53 |
["./AAMED/python/002_0038.jpg"]
|
54 |
]
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
|
60 |
gr.Interface(
|
61 |
fn=detect_ellipses,
|
|
|
53 |
["./AAMED/python/002_0038.jpg"]
|
54 |
]
|
55 |
|
56 |
+
test_files = glob.glob('./examples/*.jpg') + glob.glob('./examples/*.png')
|
57 |
+
for f in test_files:
|
58 |
+
examples = examples + [f]
|
59 |
|
60 |
gr.Interface(
|
61 |
fn=detect_ellipses,
|