Skip to content

Commit 44a2e74

Browse files
author
mbeyeler
committed
2 parents 42b7ed8 + 2148879 commit 44a2e74

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,28 @@ Paperback: 382 pages <br/>
1515
ISBN 978-178398028-4
1616
<br clear="both"/><br/>
1717

18-
1918
The content is available on [GitHub](https://github.com/mbeyeler/opencv-machine-learning).
2019
The code is released under the [MIT license](https://opensource.org/licenses/MIT).
2120

21+
For questions, discussions, and more detailed help please refer to the [Google group](https://groups.google.com/d/forum/opencv-python-blueprints).
22+
23+
If you use either book or code in a scholarly publication, please cite as:
24+
25+
> M. Beyeler, (2017). Machine Learning for OpenCV. Packt Publishing Ltd., London, England, 380 pages, ISBN 978-178398028-4.
26+
27+
Or use the following bibtex:
28+
29+
```
30+
@book{MachineLearningOpenCV,
31+
title = {{Machine Learning for OpenCV}},
32+
subtitle = {{A practical introduction to the world of machine learning and image processing using OpenCV and Python}},
33+
author = {Michael Beyeler},
34+
year = {2017},
35+
pages = {380},
36+
publisher = {Packt Publishing Ltd.},
37+
isbn = {978-178398028-4}
38+
}
39+
```
2240

2341

2442
## Table of Contents
@@ -132,6 +150,11 @@ In short:
132150
$ cd opencv-machine-learning
133151
```
134152

153+
- Add the following to your remotes:
154+
```
155+
$ git remote add upstream https://github.com/mbeyeler/opencv-machine-learning
156+
```
157+
135158
3. Add Conda-Forge to your trusted channels (to simplify installation of OpenCV on Windows platforms):
136159

137160
```
@@ -174,6 +197,21 @@ In short:
174197
and select `Kernel > Restart & Run All` from the top menu.
175198

176199

200+
## Getting the latest code
201+
202+
If you followed the instructions above and:
203+
- forked the repo,
204+
- cloned the repo,
205+
- added the `upstream` remote repository,
206+
207+
then you can always grab the latest changes by running a git pull:
208+
209+
```
210+
$ cd opencv-machine-learning
211+
$ git pull upstream master
212+
```
213+
214+
177215
## Acknowledgment
178216

179217
This book was inspired in many ways by the following authors and their corresponding publications:

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ matplotlib
55
opencv==3.1
66
jupyter
77
notebook
8+
pandas
89
keras
10+
mkl-service

0 commit comments

Comments
 (0)