Skip to content

Commit 2f187bf

Browse files
author
Dinar Ahmatnurov
committed
Merge branch 'master' of https://github.com/Itseez/opencv_contrib into latentsvm_caskade
2 parents cc3afa5 + c12f5c0 commit 2f187bf

File tree

921 files changed

+1138635
-307
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

921 files changed

+1138635
-307
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.autosave
2+
*.pyc
3+
*.user
4+
*~
5+
.*.swp
6+
.DS_Store
7+
.sw[a-z]
8+
Thumbs.db
9+
tags
10+
tegra/

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: cpp
2+
compiler:
3+
- gcc
4+
- clang
5+
before_script:
6+
- cd ../
7+
- git clone https://github.com/Itseez/opencv.git
8+
- mkdir build-opencv
9+
- cd build-opencv
10+
- cmake -DOPENCV_EXTRA_MODULES_PATH=../opencv_contrib/modules ../opencv
11+
script:
12+
- make -j5
13+
notifications:
14+
email: false

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here is the CMake command for you:
1818

1919
```
2020
$ cd <opencv_build_directory>
21-
$ cmake -DOPENCV_EXTRA_MODULES_PATH=<opencv_contrib> <opencv_source_directory>
21+
$ cmake -DOPENCV_EXTRA_MODULES_PATH=<opencv_contrib>/modules <opencv_source_directory>
2222
$ make -j5
2323
```
2424

@@ -27,5 +27,21 @@ modules from `opencv_contrib` repository. If you don't want all of the modules,
2727
use CMake's `BUILD_opencv_*` options. Like in this example:
2828

2929
```
30-
$ cmake -DOPENCV_EXTRA_MODULES_PATH=<opencv_contrib> -DBUILD_opencv_legacy=OFF <opencv_source_directory>
31-
```
30+
$ cmake -DOPENCV_EXTRA_MODULES_PATH=<opencv_contrib>/modules -DBUILD_opencv_legacy=OFF <opencv_source_directory>
31+
```
32+
33+
If you prefer using the gui version of cmake (cmake-gui), then, you can add `opencv_contrib` modules within `opencv` core by doing the following:
34+
35+
1. start cmake-gui
36+
37+
2. select the opencv source code folder and the folder where binaries will be built (the 2 upper forms of the interface)
38+
39+
3. press the `configure` button. you will see all the opencv build parameters in the central interface
40+
41+
4. browse the parameters and look for the form called `OPENCV_EXTRA_MODULES_PATH` (use the search form to focus rapidly on it)
42+
43+
5. complete this `OPENCV_EXTRA_MODULES_PATH` by the proper pathname to the `<opencv_contrib>/modules` value using its browse button.
44+
45+
6. press the `configure` button followed by the `generate` button (the first time, you will be asked which makefile style to use)
46+
47+
7. build the `opencv` core with the method you chose (make and make install if you chose Unix makfile at step 6)
147 KB
Loading
163 KB
Loading
78.4 KB
Loading
27.6 KB
Loading
67.8 KB
Loading

doc/tutorials/bioinspired/retina_model/retina_model.rst

Lines changed: 418 additions & 0 deletions
Large diffs are not rendered by default.
48.9 KB
Loading

0 commit comments

Comments
 (0)