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 eea43c6a46 added CV_CALIB_RATIONAL_MODEL for better backward compatibility 14 years ago
..
latex2sphinx Fixed problem with conflicting filenames in the online documentation 14 years ago
papers
pics
plastex
python_fragments
vidsurv
CMakeLists.txt
ChangeLog.htm
CvAux.tex
Doxyfile.in
FAQ.tex
README.txt Updated for building in latexsphinx directory 14 years ago
calib3d.tex added CV_CALIB_RATIONAL_MODEL for better backward compatibility 14 years ago
common.m4
core_array_operations.tex
core_basic_structures.tex fixed canny test; fixed mhi-global test & implementation (hopefully, for the last time); added sse 4.1 & 4.2 support (not working in Xcode for some reason); moved splineInterpolation to color.cpp; fixed a few bugs in documentation 14 years ago
core_clustering_search.tex
core_drawing_functions.tex
core_dynamic_structures.tex
core_introduction.tex
core_persistence.tex
core_utilities_system_functions.tex
cvcam.rtf
features2d_common_detection_description.tex update features2d documentation after changes create functions and DynamicAdaptedFeatureDetector 14 years ago
features2d_detection_description.tex minor addition to SURF doc (#188) 14 years ago
features2d_dynamic_detectors.tex update features2d documentation after changes create functions and DynamicAdaptedFeatureDetector 14 years ago
features2d_object_categorization.tex updated doc on features2d 14 years ago
flann.tex
go
haartraining.htm
helvetica.sty
highgui.tex
highgui_qt.tex
imgproc_feature_detection.tex
imgproc_histograms.tex added hconcat & vconcat functions for joining matrices; moved some inline functions out of the headers; fixed several bugs in documentation; removed MatND from docs 14 years ago
imgproc_image_filtering.tex
imgproc_image_transform.tex
imgproc_image_warping.tex
imgproc_motion_tracking.tex
imgproc_object_detection.tex
imgproc_planar_subdivisions.tex
imgproc_struct_shape_analysis.tex fixed convexHull description; updated cvHaarDetectObjects description (maxSize parameter). 14 years ago
index.htm
license.txt
ml.tex
objdetect.tex fixed convexHull description; updated cvHaarDetectObjects description (maxSize parameter). 14 years ago
online-opencv.tex
opencv-logo.png
opencv-logo2.png
opencv.bib
opencv.jpg
opencv.pdf Updated opencv.pdf with new modifications 14 years ago
opencv.sty modified wiki link name 14 years ago
opencv.tex
opencv_cheatsheet.pdf
opencv_cheatsheet.tex
opencvref_body.tex updated doc on features2d 14 years ago
packaging.txt
pattern.pdf
verbdef.sty
video_motion_tracking.tex added hconcat & vconcat functions for joining matrices; moved some inline functions out of the headers; fixed several bugs in documentation; removed MatND from docs 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