Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def main():
|
|
100 |
|
101 |
if uploaded_file is not None:
|
102 |
print(uploaded_file)
|
103 |
-
image = Image.open(
|
104 |
st.image(uploaded_file, caption="Processing Image", use_column_width=True)
|
105 |
|
106 |
pipeline_1_out, person_count = pipeline_1_final(image)
|
|
|
100 |
|
101 |
if uploaded_file is not None:
|
102 |
print(uploaded_file)
|
103 |
+
image = Image.open(uploaded_file)
|
104 |
st.image(uploaded_file, caption="Processing Image", use_column_width=True)
|
105 |
|
106 |
pipeline_1_out, person_count = pipeline_1_final(image)
|