BennoKrojer commited on
Commit
adaaec6
1 Parent(s): 7e3f4be

load image list

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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([prefix+'/MSR-VTT-videoTestVideo_video7016-shot1_2/'+images[index], prefix+'/MSR-VTT-videoTestVideo_video7016-shot1_2/'+images[index+1]], width=100, use_column_width=True)
 
 
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)))