Update app.py
Browse files
app.py
CHANGED
@@ -31,4 +31,4 @@ if image is not None:
|
|
31 |
cv2.putText(cv2_img, "Face", (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)
|
32 |
|
33 |
# Display the annotated image
|
34 |
-
st.image(cv2_img, channels="BGR", caption="Detected Faces",
|
|
|
31 |
cv2.putText(cv2_img, "Face", (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (0, 255, 0), 2)
|
32 |
|
33 |
# Display the annotated image
|
34 |
+
st.image(cv2_img, channels="BGR", caption="Detected Faces", use_container_width=True)
|