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.
 
 
 
 
 
 
James Bowman 35dc0de097 Typo in floats 15 years ago
..
latex2sphinx Typo in floats 15 years ago
papers "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
pics "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
plastex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
python_fragments #301, sample code for CalcHist 15 years ago
vidsurv "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
CMakeLists.txt always create <opencv_build_dir>/doc/html to avoid CMake 2.4 error messages 15 years ago
ChangeLog.htm updated docs: grabcut added, PDF updated, ChangeLog: removed duplicated section 15 years ago
CvAux.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
Doxyfile.in doxygenated opencv_video & opencv_calib3d modules (C++ part only) 15 years ago
FAQ.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
HighGui.tex extended highgui VideoCapture::get/set property documentation (thanks to frm) 15 years ago
MachineLearning.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
README.txt "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
common.m4 "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cv_calibration_3d.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cv_feature_detection.tex moved matchesMask 15 years ago
cv_histograms.tex Typo 15 years ago
cv_image_filtering.tex fixed Latex docs for cleaner HTML output 15 years ago
cv_image_transform.tex updated docs: grabcut added, PDF updated, ChangeLog: removed duplicated section 15 years ago
cv_image_warping.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cv_motion_tracking.tex #393 SnakeImage revised Python binding 15 years ago
cv_object_detection.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cv_planar_subdivisions.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cv_struct_shape_analysis.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cvaux_3d.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cvaux_bgfg.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cvaux_object_detection.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cvcam.rtf "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cxcore_array_operations.tex fixed Latex docs for cleaner HTML output 15 years ago
cxcore_basic_structures.tex fixed Latex docs for cleaner HTML output 15 years ago
cxcore_clustering_search.tex fixed Latex docs for cleaner HTML output 15 years ago
cxcore_drawing_functions.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cxcore_dynamic_structures.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cxcore_introduction.tex extended description of the error handling mechanism with OpenCV C++ API 15 years ago
cxcore_persistence.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
cxcore_utilities_system_functions.tex extended description of the error handling mechanism with OpenCV C++ API 15 years ago
go "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
haartraining.htm "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
helvetica.sty "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
index.htm "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
license.txt "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
online-opencv.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 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 "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv.jpg "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv.pdf updated docs: grabcut added, PDF updated, ChangeLog: removed duplicated section 15 years ago
opencv.sty "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
opencv_cheatsheet.pdf couple more fixes 15 years ago
opencv_cheatsheet.tex couple more fixes 15 years ago
opencvref_body.tex "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
packaging.txt "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
pattern.pdf "atomic bomb" commit. Reorganized OpenCV directory structure 15 years ago
verbdef.sty "atomic bomb" commit. Reorganized OpenCV directory structure 15 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/plastex directory,
issue the "go" commend there:

sh go

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

--------------------------------------------------------------------------
[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