Name
Last commit
Last update
..
_static Loading commit data...
_themes/blue Loading commit data...
opencv1 Loading commit data...
opencv2 Loading commit data...
pattern_tools Loading commit data...
pics Loading commit data...
python_fragments Loading commit data...
tutorials Loading commit data...
user_guide Loading commit data...
vidsurv Loading commit data...
CMakeLists.txt Loading commit data...
Doxyfile.in Loading commit data...
README.txt Loading commit data...
acircles_pattern.png Loading commit data...
check_docs.py Loading commit data...
check_docs_whitelist.txt Loading commit data...
conf.py Loading commit data...
haartraining.htm Loading commit data...
license.txt Loading commit data...
mymath.sty Loading commit data...
ocv.py Loading commit data...
opencv-logo.png Loading commit data...
opencv-logo2.png Loading commit data...
opencv.bib Loading commit data...
opencv.ico Loading commit data...
opencv.jpg Loading commit data...
opencv.pdf Loading commit data...
opencv_cheatsheet.pdf Loading commit data...
opencv_cheatsheet.tex Loading commit data...
opencv_tutorials.pdf Loading commit data...
opencv_user.pdf Loading commit data...
packaging.txt Loading commit data...
pattern.png Loading commit data...
reformat.py Loading commit data...
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