|
1 | 1 | # Learning OpenCV 3
|
2 | 2 |
|
| 3 | +## INTRO |
3 | 4 |
|
4 | 5 | This is the example code that accompanies Learning OpenCV 3 by Adrian Kaehler and Gary Bradski (9781491937990).
|
5 | 6 |
|
| 7 | +Click the Download Zip button to the right to download example code. |
| 8 | + |
| 9 | +Visit the catalog page [here](http:*shop.oreilly.com/product/0636920044765.do). |
| 10 | + |
| 11 | +See an error? Report it [here](http:*oreilly.com/catalog/errata.csp?isbn=0636920044765), or simply fork and send us a pull request |
| 12 | + |
| 13 | + |
| 14 | +## NOTES |
| 15 | + |
| 16 | +For default suggestions of how the run the code, it assumes you put your build directory under Learning-OpenCV-3_examples directory. Thus, you |
| 17 | + |
| 18 | +Previously, from the Learning-OpenCV-3_examples directory: |
| 19 | + |
| 20 | +``` |
| 21 | + mkdir build |
| 22 | + cd build |
| 23 | + cmake .. |
| 24 | + make -j |
| 25 | +``` |
6 | 26 |
|
7 |
| -## LIST |
| 27 | + |
| 28 | +Note, for your interest, included here is an Ubuntu _Docker_ file that |
| 29 | +* Shares a directory with the host operating system |
| 30 | +* Shares the first camera between both systems |
| 31 | +* Loads Ubuntu 16.04 |
| 32 | +* Loads all dependencies for OpenCV 3.2 and opencv_contrib |
| 33 | +* Loads and builds OpenCV 3.2 and opencv_contrib into a build directory |
| 34 | + * executable files end up in `opencv-3.2.0/build/bin` |
| 35 | +* Next, it `git clones` the code (and Docker file) for Learning OpenCV 3 and builds it |
| 36 | + * executable files end up in `Learning_OpenCV-3_examples/build` |
| 37 | +* To get to the top level directory, just type: `cd` |
| 38 | + |
| 39 | + |
| 40 | +## CONTENTS: |
8 | 41 |
|
9 | 42 | ### SPECIAL FILES:
|
10 | 43 |
|
@@ -132,7 +165,7 @@ This is the example code that accompanies Learning OpenCV 3 by Adrian Kaehler an
|
132 | 165 |
|
133 | 166 |
|
134 | 167 |
|
135 |
| -* Submit associated errata for ~~15 16~~ 17 18 19 20 21 22 |
| 168 | + |
136 | 169 |
|
137 | 170 |
|
138 | 171 | For default suggestions of how the run the code, it assumes you put your build directory under Learning-OpenCV-3_examples directory. Thus, you
|
|
0 commit comments