You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
3
+
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
4
+
5
+
This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.
6
+
-->
7
+
8
+
##### System information (version)
9
+
<!-- Example
10
+
- OpenCV => 3.1
11
+
- Operating System / Platform => Windows 64 Bit
12
+
- Compiler => Visual Studio 2015
13
+
-->
14
+
15
+
- OpenCV => :grey_question:
16
+
- Operating System / Platform => :grey_question:
17
+
- Compiler => :grey_question:
18
+
19
+
##### Detailed description
20
+
21
+
<!-- your description -->
22
+
23
+
##### Steps to reproduce
24
+
25
+
<!-- to add code example fence it with triple backticks and optional file extension
All guidelines for contributing to the OpenCV repository can be found at [`How to contribute guideline`](https://github.com/Itseez/opencv/wiki/How_to_contribute).
3
+
All guidelines for contributing to the OpenCV repository can be found at [`How to contribute guideline`](https://github.com/opencv/opencv/wiki/How_to_contribute).
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,8 @@ provides production quality support for this module.
13
13
14
14
### How to build OpenCV with extra modules
15
15
16
-
You can build OpenCV, so it will include the modules from this repository.
16
+
You can build OpenCV, so it will include the modules from this repository. Contrib modules are under constant development and it is recommended to use them alongside the master branch or latest releases of OpenCV.
17
+
17
18
Here is the CMake command for you:
18
19
19
20
```
@@ -46,10 +47,12 @@ If you prefer using the gui version of cmake (cmake-gui), then, you can add `ope
46
47
47
48
7. build the `opencv` core with the method you chose (make and make install if you chose Unix makfile at step 6)
48
49
50
+
8. to run, linker flags to contrib modules will need to be added to use them in your code/IDE. For example to use the aruco module, "-lopencv_aruco" flag will be added.
51
+
49
52
### Update the repository documentation
50
53
51
54
In order to keep a clean overview containing all contributed modules the following files need to be created/adapted.
52
55
53
56
1. Update the README.md file under the modules folder. Here you add your model with a single line description.
54
57
55
-
2. Add a README.md inside your own module folder. This README explains which functionality (seperate functions) is available, links to the corresponding samples and explains in somewhat more detail what the module is expected to do. If any extra requirements are needed to build the module without problems, add them here also.
58
+
2. Add a README.md inside your own module folder. This README explains which functionality (seperate functions) is available, links to the corresponding samples and explains in somewhat more detail what the module is expected to do. If any extra requirements are needed to build the module without problems, add them here also.
0 commit comments