Spaces:
Runtime error
Runtime error
BennoKrojer
commited on
Commit
•
adaaec6
1
Parent(s):
7e3f4be
load image list
Browse files
app.py
CHANGED
@@ -10,4 +10,5 @@ images = set2ids['MSR-VTT-videoTestVideo_video7016-shot1_2']
|
|
10 |
|
11 |
index= int(st.number_input('Image Index from 0 to 9', value=0, min_value=0, max_value=len(images)-1))
|
12 |
|
13 |
-
st.image(
|
|
|
|
10 |
|
11 |
index= int(st.number_input('Image Index from 0 to 9', value=0, min_value=0, max_value=len(images)-1))
|
12 |
|
13 |
+
st.image(prefix+'/MSR-VTT-videoTestVideo_video7016-shot1_2/'+images[index], use_column_width=True)
|
14 |
+
st.image(images, width=100, caption=list(range(9)))
|