Update app.py
Browse files
app.py
CHANGED
@@ -96,8 +96,9 @@ if __name__=="__main__":
|
|
96 |
btn.click(fn=app_fn, inputs=[img, threshold, object_larger_than_bg], outputs=[fig_pca])
|
97 |
examples = gr.Examples(
|
98 |
examples=[
|
99 |
-
["assets/
|
100 |
-
["assets/
|
|
|
101 |
],
|
102 |
inputs=[img, threshold, object_larger_than_bg],
|
103 |
outputs=[fig_pca],
|
|
|
96 |
btn.click(fn=app_fn, inputs=[img, threshold, object_larger_than_bg], outputs=[fig_pca])
|
97 |
examples = gr.Examples(
|
98 |
examples=[
|
99 |
+
["assets/photo-1.jpg", 0.6, True],
|
100 |
+
["assets/photo-2.jpg", 0.7, True],
|
101 |
+
["assets/photo-3.jpg", 0.8, False]
|
102 |
],
|
103 |
inputs=[img, threshold, object_larger_than_bg],
|
104 |
outputs=[fig_pca],
|