Update my_model/tabs/run_inference.py
Browse files
my_model/tabs/run_inference.py
CHANGED
@@ -35,7 +35,8 @@ class InferenceRunner(StateManager):
|
|
35 |
for idx, sample_image_path in enumerate(self.sample_images):
|
36 |
with cols[idx]:
|
37 |
image = Image.open(sample_image_path)
|
38 |
-
|
|
|
39 |
if st.button(f'Select Sample Image {idx + 1}', key=f'sample_{idx}'):
|
40 |
self.process_new_image(sample_image_path, image, kbvqa)
|
41 |
|
|
|
35 |
for idx, sample_image_path in enumerate(self.sample_images):
|
36 |
with cols[idx]:
|
37 |
image = Image.open(sample_image_path)
|
38 |
+
image = self.resize_image(sample_image_path, new_width, new_height)
|
39 |
+
st.image(image)
|
40 |
if st.button(f'Select Sample Image {idx + 1}', key=f'sample_{idx}'):
|
41 |
self.process_new_image(sample_image_path, image, kbvqa)
|
42 |
|