The build instructions for opencv really didn't make it clear how to go about building opencv. Well the ./configure command kept failing...
So for my own reference, use the cmake method not autotools.
So for my own reference, use the cmake method not autotools.
- cd ~/projects/opencv # the directory containing INSTALL, CMakeLists.txt etc.
- mkdir release
- cd release
- cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D BUILD_PYTHON_SUPPORT=ON ../makesudo make install