Skip to content

Files

Latest commit

 

History

History
19 lines (14 loc) · 1.01 KB

README.MD

File metadata and controls

19 lines (14 loc) · 1.01 KB

Object Detection in Video Stream with YOLO V3

Project Overview

Detecting objects in a video using YOLO V3 algorithm. The approach is quite similar to detecting images with YOLO. We get every frame of a video like an image and detect objects at that frame using yolo. Then draw the boxes, labels and iterate through all the frame in a given video. Adjust the confidence and nms threshold to see how the algorithm's detections change. The annotated video will be stored in the output folder in .mp4 file format. Make sure to add yolov3.weights file to the model folder to build and run with docker.

Run with Docker

from the root directory, run

	docker build -t <name-of-your-image> .
	docker run -p 8501:8501 <name-of-your-image>:latest

then visit localhost:8501 for streamlit app

Reference

YOLO
Object Detection with OpenCV
Streamlit