Update app.py
Browse files
app.py
CHANGED
@@ -213,7 +213,7 @@ def infer():
|
|
213 |
|
214 |
# convert the tensor to PIL image using above transform
|
215 |
img = transform(frames[100])
|
216 |
-
img = img.resize((
|
217 |
# display the PIL image
|
218 |
#img.show()
|
219 |
img.save('frame_input.jpg')
|
|
|
213 |
|
214 |
# convert the tensor to PIL image using above transform
|
215 |
img = transform(frames[100])
|
216 |
+
img = img.resize((960, 520))
|
217 |
# display the PIL image
|
218 |
#img.show()
|
219 |
img.save('frame_input.jpg')
|