-
Notifications
You must be signed in to change notification settings - Fork 2
How_to_contribute
We suppose that you’ve seen the http://opencv.org/contribute.html page, and now, as an enthusiastic coder, want to contribute some code. For that purpose OpenCV project now has a mirror on the GitHub, to simplify everybody’s life! All the bug fixes, new functionality, new tutorials etc. should be submitted via the GitHub’s mechanism of pull requests.
If you are not familiar with the mechanism – do not worry, it’s very simple. Keep reading.
- Check if your bug still exists. This can be done by building the latest [2.4 branch](https://github.com/Itseez/opencv/tree/2.4) or the [latest master branch](https://github.com/Itseez/opencv), and make sure that the error is still reproducable there. We do not fix bugs that only affect deprecated versions like OpenCV2.1 for example.
- Make sure that nobody beat you into fixing or reporting the issue by doing a search on the Github OpenCV issues page, and making sure that there isn’t someone working on it. In the latter case you might provide support or suggestion in the issue or in the linked pull request.
- If you have a question about the software, then this is NOT the right place. You should open up a question at the [OpenCV Q&A forum](http://answers.opencv.org/questions/). In order to post a decent question from the start, feel free to read the official [forum guidelines](http://answers.opencv.org/faq/).
Before you open up anything on the OpenCV github page, be sure that you are at the right place with your problem.
- Install Git.
- Register at GitHub. Create your fork of OpenCV repository https://github.com/Itseez/opencv (see https://help.github.com/articles/fork-a-repo for details).
- Choose a task for youself. It could be a bugfix, or some new code.
- Choose a base branch for your work. You have two options:
- 2.4 – the branch that will be used for future minor releases in the 2.4.x line. Choose it when fixing a bug that’s reproducible in this branch, or when making performance optimizations relevant to it. 2.4 has been feature-frozen; as such, new functionality will not be accepted.
- master – the branch that will be used for the next major release of OpenCV (tentatively, 3.0). Choose it when adding new functionality, or for bugfixes/optimizations that don’t apply to 2.4.
- Clone your fork to your computer. Install the default pre-commit hook by renaming
opencv/.git/hooks/pre-commit.sample
toopencv/.git/hooks/pre-commit
– this will prevent you from committing whitespace errors. - Create a new branch (with a meaningful name) from the base branch you chose.
- Modify/add the code following our Coding_Style_Guide.
- Run testsuite locally:
- get the required sample data by cloning git://code.opencv.org/opencv_extra.git (choose corresponding branch)
- export OPENCV_TEST_DATA_PATH=<path to opencv_extra/testdata>
- execute each test binary from the build directory, e.g. bin/opencv_test_core
- When you are done, push your branch to your GitHub fork; then create a pull request from your branch to the base branch (see https://help.github.com/articles/using-pull-requests for details).
There is an important difference in contributing a bugfix or a new piece of code. For a new piece of code the above procedure is just fine, but for a bugfix, do keep the following in mind:
- Open up an issue at the Github issues page, so that people are aware of the problem and can support you in fixing it.
- Make sure that you open up an issue at the correct place. Problems related to the main repository are reported [here](https://github.com/Itseez/opencv/issues/), while problems related to the contributed repository are reported [here](https://github.com/Itseez/opencv_contrib/issues/).
- Make sure that you provide enough information. You should clearly state which OpenCV version you are using, what your system configuration is (OS, hardware specifications, extra libraries used, …). The golden rule here is, the more the better.
Following these guidelines will increase the likelihood of your pull request being accepted:
- Before pushing your PR to the repository, make sure that it builds perfectly fine on your local system.
- Add enough information, like a meaningful title, the reason why you made the commit and a link to the issue page if you opened one for this PR.
- Scope your PR to one issue. Before submitting, make sure the diff contains no unrelated changes. If you want to cover more than one issue, submit your changes for each as separate pull requests.
- If you have added new functionality, you should update/create the relevant documentation, as well as add tests for it to the testsuite.
- Try not to include “oops” commits – ones that just fix an error in the previous commit. If you have those, then before submitting squash those fixes directly into the commits where they belong.
- Make sure to choose the right base branch and to follow the Coding_Style_Guide for your code.
- Your pull request will be automatically tested by OpenCV’s buildbot (testing status can be checked here: http://pullrequest.opencv.org). If any builders are failed, you should fix the issue. As you fix the code and push changes to your branch at github, buildbot reruns automatically. No need to close pull request and open a new one!
- Once all the builders are “green”, one of OpenCV developers will review your code. Reviewer could ask you to modify your pull request. Please provide timely response for reviewers (within weeks, not months), otherwise you submission could be postponed or even rejected.
- As soon as the reviewer is fine with the pull request and BuildBot likes your code, the special comment “:+1:” or “:shipit:” is put, which signals OpenCV maintainers that they can merge your pull request.
- The last, but not least. Make sure you got credits. We try to memorize all the contributions and list major ones in the ChangeLog and release announcements, but we may forget to do that, unintentionally. Please, do not hesitate to remind us, and we will update opencv.org and the ChangeLog accordingly.
Please read this, read the “Choose a base branch…” section.
You can use git cherry-pick
command to move individual commits between branches. Here is the overall algorithm: you close the existing pull request, you create a new branch properly (from either `2.4` or `master`), you cherry-pick necessary commits into it, push changes to your GitHub branch, then make a new pull request.
Just resolve the issues, commit changes, and push them to the same branch you used to create a pull request.
Next time we suggest you to do the following. Install the default pre-commit hook by renaming opencv/.git/hooks/pre-commit.sample
to opencv/.git/hooks/pre-commit
– this will prevent you from committing whitespace errors.
cd opencv
mv opencv/.git/hooks/pre-commit.sample opencv/.git/hooks/pre-commit
Also, you can check for whitespace errors before the commit using this command:
git diff —check
- Home
- OpenCV 3
- Development process
- Tutorials
- Computer Vision and Pattern Recognition
- Google summer of code
- Vision challenge
- Workshops