opencv/doc
2011-06-23 12:13:33 +00:00
..
_static
_themes/blue
opencv1 fixed formula in cvIntegral/integral description 2011-06-19 23:24:01 +00:00
opencv2
pattern_tools
pics
python_fragments
tutorials Added tutorial for threshold in reST and fixed broken links from previous ImgProc tutorials 2011-06-22 02:05:49 +00:00
user_guide
vidsurv
acircles_pattern.png
check_docs_whitelist.txt fixed #1140 and made some other updates of features2d docs 2011-06-17 13:23:28 +00:00
check_docs.py updated check_docs script and whitelist 2011-06-17 11:33:06 +00:00
CMakeLists.txt fixed #768 ticket 2011-06-14 10:19:56 +00:00
conf.py Added tutorial for threshold in reST and fixed broken links from previous ImgProc tutorials 2011-06-22 02:05:49 +00:00
Doxyfile.in
haartraining.htm
license.txt
mymath.sty
ocv.py introduced new RST/Sphinx domain ocv. 2011-06-16 12:48:23 +00:00
opencv2refman_py.pdf propagated some more changes from 2.3 to trunk 2011-06-23 12:13:33 +00:00
opencv_cheatsheet.pdf updated cheatsheet; fixed a few typos 2011-06-04 09:12:25 +00:00
opencv_cheatsheet.tex updated cheatsheet; fixed a few typos 2011-06-04 09:12:25 +00:00
opencv_tutorials.pdf
opencv_user.pdf
opencv-logo2.png
opencv-logo.png
opencv.bib
opencv.ico
opencv.jpg
opencv.pdf
packaging.txt
pattern.png
README.txt
reformat.py

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