Skip to content

Commit dbf756f

Browse files
committed
Modified README.md and added requirements.txt
1 parent 44ceeca commit dbf756f

File tree

3 files changed

+33
-13
lines changed

3 files changed

+33
-13
lines changed
1.4 MB
Loading

Diff for: AutomationScripts/Object Detector/README.md

+32-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,40 @@
11
# Object Detector
22

3-
## Description
4-
This program's purpose is to detect an object of the user's choice in an image. To do this the program needs a picture of the object needing to be detected and the image where the object needs to be found. The program will then draw a green rectangle around where it thinks the object is.
3+
## Aim
4+
5+
The aim is to make a program that will detect an object of the users choice in an image the user provides.
6+
7+
## Purpose
8+
9+
The purpose of this program is to help automate the task of object detection in an image.
10+
11+
## Short description of package/script
12+
13+
- The program draws a green rectangle around the object you want it to find in the image.
14+
- OpenCV
15+
16+
17+
## Workflow of the Project
18+
19+
- Make sure that the terminal's working directory is the directory where the project is
20+
- Type in "python object_detector.py path1 path2" where path1 is the file path of the image with the object you want to find in the image in path2
21+
522

623
## Setup instructions
7-
### Dependencies
8-
openCV: pip install opencv-python
924

10-
### Run instructions
11-
1. Make sure that the current working directory wherever the Object Detector folder is
12-
2. Type in "python object_detector.py path1 path2" where path1 is the file path of the image with the object you want to find in the image in path2
25+
- Install OpenCV: pip install opencv-python
26+
27+
28+
## Output
29+
30+
<p align="center"><img src="https://github.com/BMaster123/images/blob/main/plant_detection.PNG"></p>
31+
32+
33+
## Author(s)
34+
35+
Bhavesh Mandalapu
1336

14-
## Sample output
15-
### Input
16-
<p align="center"><img src="https://github.com/BMaster123/images/blob/main/desk.jpeg"></p>
1737

18-
<p align="center"><img src="https://github.com/BMaster123/images/blob/main/plant.PNG"></p>
38+
## Disclaimers, if any
1939

20-
### Output
21-
<p align="center"><img src="https://github.com/BMaster123/images/blob/main/plant_detection.PNG"></p>
40+
This program does not work all the time. It may draw a rectangle around an area where the object isn't present.

Diff for: AutomationScripts/Object Detector/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OpenCV: pip install opencv-python

0 commit comments

Comments
 (0)