Update app.py
Browse files
app.py
CHANGED
|
@@ -21,6 +21,12 @@ model1 = YOLO('yolov8n.pt')
|
|
| 21 |
|
| 22 |
st.title("Object Detection and Recognition")
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
video_file = st.file_uploader("Choose a video file", type=["mp4"])
|
| 25 |
|
| 26 |
if video_file is not None:
|
|
|
|
| 21 |
|
| 22 |
st.title("Object Detection and Recognition")
|
| 23 |
|
| 24 |
+
st.write("""
|
| 25 |
+
This web app performs object detection and recognition on a video using YOLOv8.
|
| 26 |
+
It detects various objects, such as people, cars, trucks, backpacks, suspicious handheld devices, handbags, and suitcases.
|
| 27 |
+
The processed video is displayed with alerts highlighted, and you can stop the inference at any time.
|
| 28 |
+
""")
|
| 29 |
+
|
| 30 |
video_file = st.file_uploader("Choose a video file", type=["mp4"])
|
| 31 |
|
| 32 |
if video_file is not None:
|