@@ -15,10 +15,28 @@ Paperback: 382 pages <br/>
1515ISBN 978-178398028-4
1616<br clear =" both " /><br />
1717
18-
1918The content is available on [ GitHub] ( https://github.com/mbeyeler/opencv-machine-learning ) .
2019The 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+
1351583 . 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
179217This book was inspired in many ways by the following authors and their corresponding publications:
0 commit comments