Skip to content

Object Detection in videos with OpenCV, YOLO V3, Docker and Streamlit

Notifications You must be signed in to change notification settings

dannylee1020/object-detection-video

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Object Detection in videos with OpenCV, YOLO V3, Docker and Streamlit

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published