Skip to content

Commit

Permalink
Added .gitignore and requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jamietownsend committed Jan 27, 2019
1 parent 1b2a9e3 commit a262bf9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea/
venv/
main/input/video_mp4
main/output
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,19 @@ You need to install:
- [Python](https://www.python.org/downloads/)
- [OpenCV](https://opencv.org/) version >= 3.0
1. `python -mpip install -U pip`
2. `python -mpip install -U opencv-python`
- numpy and tqdm:
1. `python -mpip install -U opencv-python`
1. `python -mpip install -U opencv-contrib-python`
- numpy, tqdm and lxml:
1. `python -mpip install -U numpy`
2. `python -mpip install -U tqdm`
1. `python -mpip install -U tqdm`
1. `python -mpip install -U lxml`

Alternatively, you can install everything at once by simply running:

```
python -mpip install -U pip
python -mpip install -U -r requirements.txt
```

### Run project

Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
lxml==4.3.0
numpy==1.16.0
opencv-contrib-python==3.4.5.20
tqdm==4.29.1

0 comments on commit a262bf9

Please sign in to comment.