Skip to content

Updated the grammatical errors in readme.md #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# YOLOv3-Object-Detection-with-OpenCV

This project implements an image and video object detection classifier using pretrained yolov3 models.
The yolov3 models are taken from the official yolov3 paper which was released in 2018. The yolov3 implementation is from [darknet](https://github.com/pjreddie/darknet). Also, this project implements an option to perform classification real-time using the webcam.
This project implements an image and video object detection classifier using pre-trained YOLOv3 models.
The YOLOv3 models are taken from the official YOLOv3 paper released in 2018. The YOLOv3 implementation is from [darknet](https://github.com/pjreddie/darknet). Also, this project implements an option to perform classification in real time using the webcam.

## How to use?

Expand All @@ -24,14 +24,14 @@ python3 yolo.py --image-path='/path/to/image/'
```
python3 yolo.py --video-path='/path/to/video/'
```
5) To infer real-time on webcam
5) To infer real-time on a webcam
```
python3 yolo.py
```

Note: This works considering you have the `weights` and `config` files at the yolov3-coco directory.
Note: This works considering you have the `weights` and `config` files in the yolov3-coco directory.
<br/>
If the files are located somewhere else then mention the path while calling the `yolov3.py`. For more details
If the files are located somewhere else, then mention the path while calling the `yolov3.py`. For more details
```
yolo.py --help
```
Expand Down