Spaces:
Runtime error
Runtime error
Commit ·
3ef3204
1
Parent(s): 870f781
added more examples
Browse files- app.py +5 -1
- images/5.jpg +0 -0
- images/6.jpg +0 -0
- images/7.jpg +0 -0
- images/8.jpg +0 -0
app.py
CHANGED
|
@@ -50,7 +50,11 @@ sift_result = gr.Interface(
|
|
| 50 |
os.path.join(os.path.dirname(__file__), "images/1.jpg"),
|
| 51 |
os.path.join(os.path.dirname(__file__), "images/2.jpg"),
|
| 52 |
], [os.path.join(os.path.dirname(__file__), "images/3.png"),
|
| 53 |
-
os.path.join(os.path.dirname(__file__), "images/4.png")]
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
title="SIFT Image Compare",
|
| 55 |
batch=False,
|
| 56 |
description="A model that uses SIFT method for image compare.",
|
|
|
|
| 50 |
os.path.join(os.path.dirname(__file__), "images/1.jpg"),
|
| 51 |
os.path.join(os.path.dirname(__file__), "images/2.jpg"),
|
| 52 |
], [os.path.join(os.path.dirname(__file__), "images/3.png"),
|
| 53 |
+
os.path.join(os.path.dirname(__file__), "images/4.png")],
|
| 54 |
+
[os.path.join(os.path.dirname(__file__), "images/5.jpg"),
|
| 55 |
+
os.path.join(os.path.dirname(__file__), "images/6.jpg")],
|
| 56 |
+
[os.path.join(os.path.dirname(__file__), "images/7.jpg"),
|
| 57 |
+
os.path.join(os.path.dirname(__file__), "images/8.jpg")]],
|
| 58 |
title="SIFT Image Compare",
|
| 59 |
batch=False,
|
| 60 |
description="A model that uses SIFT method for image compare.",
|
images/5.jpg
ADDED
|
images/6.jpg
ADDED
|
images/7.jpg
ADDED
|
images/8.jpg
ADDED
|