I want to get the OpenCV2.4.2 source files for Windows so that I can create the libraries myself . I ran a command
git clone git://code.opencv.org/opencv.git
This actually gets the 2.4.9 repository, which I don't want. There is a GIT option
git reset --hard <commit code>
which should return to the desired commit. The fact is that I found that there are too many commits, and I do not know which one is version 2.4.2!
- How to download version 2.4.2 from GIT?
source
share