Update app.py
Browse files
app.py
CHANGED
|
@@ -69,6 +69,6 @@ elif source_radio == "GAME":
|
|
| 69 |
elif source_radio == "WEBCAM":
|
| 70 |
input_img = camera_input_live()
|
| 71 |
if input_img:
|
| 72 |
-
|
| 73 |
-
st.image(
|
| 74 |
|
|
|
|
| 69 |
elif source_radio == "WEBCAM":
|
| 70 |
input_img = camera_input_live()
|
| 71 |
if input_img:
|
| 72 |
+
result_img, detected_object = object_detection.process_image(input_img)
|
| 73 |
+
st.image(result_img, channels = "BGR")
|
| 74 |
|