Update app.py
Browse files
app.py
CHANGED
@@ -129,7 +129,7 @@ if selected_type == "Upload Image":
|
|
129 |
st.image(image, use_column_width=True)
|
130 |
|
131 |
#img = io.BytesIO(image)
|
132 |
-
img =
|
133 |
|
134 |
|
135 |
with st.spinner(f"Working... 💫"):
|
|
|
129 |
st.image(image, use_column_width=True)
|
130 |
|
131 |
#img = io.BytesIO(image)
|
132 |
+
img = cv2.imdecode(image, cv.IMREAD_COLOR)
|
133 |
|
134 |
|
135 |
with st.spinner(f"Working... 💫"):
|