Open Source Computer Vision Library https://opencv.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Vadim Pisarevsky d77915759a updated cheatsheet; fixed a few typos 14 years ago
..
_static removed obsolete docs 14 years ago
_themes/blue moved the new docs from docroot to doc 14 years ago
opencv1 fixed formatting a bit 14 years ago
opencv2 converted user guide & tutorials from tex to rst; added them into the whole documentation tree; added html_docs target. 14 years ago
pattern_tools adding better support for asymmetric patterns. 14 years ago
pics repaired opencv refman & refman1 build 14 years ago
python_fragments #301, sample code for CalcHist 15 years ago
tutorials converted user guide & tutorials from tex to rst; added them into the whole documentation tree; added html_docs target. 14 years ago
user_guide added the link in doc on kinect 14 years ago
vidsurv "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
CMakeLists.txt converted user guide & tutorials from tex to rst; added them into the whole documentation tree; added html_docs target. 14 years ago
Doxyfile.in doxygenated opencv_video & opencv_calib3d modules (C++ part only) 15 years ago
README.txt Updated for building in latexsphinx directory 14 years ago
acircles_pattern.png Added a printable asymmetric pattern of circles 14 years ago
check_docs.py very first version of the documentation checking script 14 years ago
conf.py converted user guide & tutorials from tex to rst; added them into the whole documentation tree; added html_docs target. 14 years ago
haartraining.htm "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
license.txt "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
mymath.sty moved the new docs from docroot to doc 14 years ago
opencv-logo.png "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv-logo2.png "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv.bib added documentation on LatentSVM algorithm 14 years ago
opencv.ico remove interfaces from installation; remove opencv/utils dir completely 14 years ago
opencv.jpg "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv.pdf added asynchronous versions of transform- and projectPoints into the GPU module, added docs 14 years ago
opencv_cheatsheet.pdf updated cheatsheet; fixed a few typos 14 years ago
opencv_cheatsheet.tex updated cheatsheet; fixed a few typos 14 years ago
opencv_tutorials.pdf Tutorials 14 years ago
opencv_user.pdf English corrected 14 years ago
packaging.txt "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
pattern.png replaced 8x6 pattern with 9x6, which orientation can be determined without any ambiguity 14 years ago
reformat.py moved the new docs from docroot to doc 14 years ago

README.txt

This file describes how to create the opencv.pdf manual in the
.../opencv/doc directory. It further describes how to produce
the html files on disk that populate the online OpenCV documenation
wiki.

-------------------------------------------------------------------------
In Ubuntu or Debian, required to build the opencv.pdf manual:

sudo apt-get install texlive texlive-latex-extra latex-xcolor texlive-fonts-extra

To build the HTML documentation, these are also required:

sudo apt-get install python-setuptools ## See [1] below for another install method
sudo easy_install -U Sphinx ## This is NOT the speech recognition program.
sudo apt-get install dvipng
sudo easy_install plasTeX

-------------------------------------------------------------------------
In other Linux distros you will also need to install LiveTeX and,
optionally, if you want to produce the hmtl files, the Sphinx tool (http://sphinx.pocoo.org/)

In MacOSX you can use MacTex (https://www.tug.org/mactex/).

In Windows you can use MiKTeX

--------------------------------------------------------------------------
(1) To build the latex files to create the opencv.pdf manual, in the
.../opencv/doc directory, issue the command:

sh go

(2) If you want to build the html files that OpenCV uses to populate the
online documentation, assuming you downloaded easy_install,
Sphinx and plasTex as above, then from the .../opencv/doc/latex2sphinx directory,
issue the "buildall" commend there:

sh buildall

The resulting html files will be be created in:
.../opencv/doc/latex2sphinx/_build/html

Under this html directory, you will find index.html files for:
cpp The C++ manual
c The C manual
py The Python manual

--------------------------------------------------------------------------
[1] To install easy install on Ubuntu, try either (as stated above):
sudo apt-get install python-setuptools
or try using:
First:
wget -q http://peak.telecommunity.com/dist/ez_setup.py
Then
sudo python ez_setup.py