Name
Last commit
Last update
..
latex2sphinx Fixed problem with conflicting filenames in the online documentation
papers "atomic bomb" commit. Reorganized OpenCV directory structure
pics --no commit message
plastex "atomic bomb" commit. Reorganized OpenCV directory structure
python_fragments #301, sample code for CalcHist
vidsurv "atomic bomb" commit. Reorganized OpenCV directory structure
CMakeLists.txt always create <opencv_build_dir>/doc/html to avoid CMake 2.4 error messages
ChangeLog.htm updated docs: grabcut added, PDF updated, ChangeLog: removed duplicated section
CvAux.tex "atomic bomb" commit. Reorganized OpenCV directory structure
Doxyfile.in doxygenated opencv_video & opencv_calib3d modules (C++ part only)
FAQ.tex "atomic bomb" commit. Reorganized OpenCV directory structure
README.txt Updated for building in latexsphinx directory
calib3d.tex extended cv::convertPointsHomogeneous to handle 4D input. corrected documentation
common.m4 "atomic bomb" commit. Reorganized OpenCV directory structure
core_array_operations.tex Reorganized documentation to be consistent with modular structure
core_basic_structures.tex Reorganized documentation to be consistent with modular structure
core_clustering_search.tex Reorganized documentation to be consistent with modular structure
core_drawing_functions.tex Reorganized documentation to be consistent with modular structure
core_dynamic_structures.tex Reorganized documentation to be consistent with modular structure
core_introduction.tex Reorganized documentation to be consistent with modular structure
core_persistence.tex Reorganized documentation to be consistent with modular structure
core_utilities_system_functions.tex Reorganized documentation to be consistent with modular structure
cvcam.rtf "atomic bomb" commit. Reorganized OpenCV directory structure
features2d_common_detection_description.tex updated doc on features2d
features2d_detection_description.tex updated doc on features2d
features2d_object_categorization.tex updated doc on features2d
flann.tex Reorganized documentation to be consistent with modular structure
go "atomic bomb" commit. Reorganized OpenCV directory structure
haartraining.htm "atomic bomb" commit. Reorganized OpenCV directory structure
helvetica.sty "atomic bomb" commit. Reorganized OpenCV directory structure
highgui.tex Reorganized documentation to be consistent with modular structure
highgui_qt.tex Minor fixes in documentation
imgproc_feature_detection.tex Reorganized documentation to be consistent with modular structure
imgproc_histograms.tex Reorganized documentation to be consistent with modular structure
imgproc_image_filtering.tex Reorganized documentation to be consistent with modular structure
imgproc_image_transform.tex Reorganized documentation to be consistent with modular structure
imgproc_image_warping.tex Reorganized documentation to be consistent with modular structure
imgproc_motion_tracking.tex Reorganized documentation to be consistent with modular structure
imgproc_object_detection.tex Reorganized documentation to be consistent with modular structure
imgproc_planar_subdivisions.tex Reorganized documentation to be consistent with modular structure
imgproc_struct_shape_analysis.tex Reorganized documentation to be consistent with modular structure
index.htm "atomic bomb" commit. Reorganized OpenCV directory structure
license.txt "atomic bomb" commit. Reorganized OpenCV directory structure
ml.tex Reorganized documentation to be consistent with modular structure
objdetect.tex Reorganized documentation to be consistent with modular structure
online-opencv.tex Minor fixes in documentation
opencv-logo.png "atomic bomb" commit. Reorganized OpenCV directory structure
opencv-logo2.png "atomic bomb" commit. Reorganized OpenCV directory structure
opencv.bib "atomic bomb" commit. Reorganized OpenCV directory structure
opencv.jpg "atomic bomb" commit. Reorganized OpenCV directory structure
opencv.pdf Loading commit data...
opencv.sty Loading commit data...
opencv.tex Loading commit data...
opencv_cheatsheet.pdf Loading commit data...
opencv_cheatsheet.tex Loading commit data...
opencvref_body.tex Loading commit data...
packaging.txt Loading commit data...
pattern.pdf Loading commit data...
verbdef.sty Loading commit data...
video_motion_tracking.tex 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