Commit b699e946 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

converted user guide & tutorials from tex to rst; added them into the whole…

converted user guide & tutorials from tex to rst; added them into the whole documentation tree; added html_docs target.
parent 6facf8ba
......@@ -9,8 +9,52 @@ file(GLOB FILES_TEX_PICS pics/*.png pics/*.jpg)
if(BUILD_DOCS AND PDFLATEX_COMPILER AND HAVE_SPHINX)
add_subdirectory(opencv1)
add_subdirectory(opencv2)
project(opencv_docs)
file(GLOB_RECURSE OPENCV2_FILES_PICT ../modules/*.png ../modules/*.jpg)
file(GLOB_RECURSE OPENCV2_FILES_RST ../modules/*.rst)
file(GLOB_RECURSE OPENCV1_FILES_PICT pics/*.png pics/*.jpg)
file(GLOB_RECURSE OPENCV1_FILES_RST opencv1/*.rst)
file(GLOB_RECURSE OPENCV_FILES_UG user_guide/*.rst)
file(GLOB_RECURSE OPENCV_FILES_TUT tutorials/*.rst)
set(OPENCV_DOC_DEPS conf.py ${OPENCV2_FILES_RST} ${OPENCV2_FILES_PICT}
${OPENCV1_FILES_RST} ${OPENCV1_FILES_PICT}
${OPENCV_FILES_UG} ${OPENCV_FILES_TUT})
add_custom_target(docs
${SPHINX_BUILD}
-b latex -c ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/.. .
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/pics ${CMAKE_CURRENT_BINARY_DIR}/doc/opencv1/pics
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_SOURCE_DIR}/mymath.sty ${CMAKE_CURRENT_BINARY_DIR}
COMMAND ${PDFLATEX_COMPILER} opencv2refman
COMMAND ${PDFLATEX_COMPILER} opencv2refman
COMMAND ${PDFLATEX_COMPILER} opencv1refman_c
COMMAND ${PDFLATEX_COMPILER} opencv1refman_c
COMMAND ${PDFLATEX_COMPILER} opencv1refman_py
COMMAND ${PDFLATEX_COMPILER} opencv1refman_py
COMMAND ${PDFLATEX_COMPILER} opencv_user
COMMAND ${PDFLATEX_COMPILER} opencv_user
COMMAND ${PDFLATEX_COMPILER} opencv_tutorials
COMMAND ${PDFLATEX_COMPILER} opencv_tutorials
DEPENDS ${OPENCV_DOC_DEPS}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating the PDF Manuals")
add_custom_target(html_docs
${SPHINX_BUILD}
-b html -c ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/.. ./_html
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/pics ${CMAKE_CURRENT_BINARY_DIR}/doc/opencv1/pics
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_SOURCE_DIR}/mymath.sty ${CMAKE_CURRENT_BINARY_DIR}
DEPENDS ${OPENCV_DOC_DEPS}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating Online Documentation")
endif()
......
......@@ -41,7 +41,7 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'opencvrefman'
project = u'OpenCV'
copyright = u'2011, opencv dev team'
# The version info for the project you're documenting, acts as replacement for
......@@ -101,7 +101,7 @@ html_theme = 'blue'
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = ['../_themes']
html_theme_path = ['_themes']
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
......@@ -112,7 +112,7 @@ html_theme_path = ['../_themes']
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = '../opencv-logo2.png'
#html_logo = 'opencv-logo2.png'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
......@@ -122,7 +122,7 @@ html_logo = '../opencv-logo2.png'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['../_static']
html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
......@@ -143,7 +143,7 @@ html_static_path = ['../_static']
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
......@@ -168,6 +168,49 @@ html_static_path = ['../_static']
# Output file base name for HTML help builder.
htmlhelp_basename = 'opencv'
# OpenCV docs use some custom LaTeX macros in the formulae. Make sure we include the definitions
pngmath_latex_preamble = r"""
\usepackage{amssymb}\usepackage{amsmath}\usepackage{bbm}
\newcommand{\matTT}[9]{
\[
\left|\begin{array}{ccc}
#1 & #2 & #3\\
#4 & #5 & #6\\
#7 & #8 & #9
\end{array}\right|
\]
}
\newcommand{\fork}[4]{
\left\{
\begin{array}{l l}
#1 & \mbox{#2}\\
#3 & \mbox{#4}\\
\end{array} \right.}
\newcommand{\forkthree}[6]{
\left\{
\begin{array}{l l}
#1 & \mbox{#2}\\
#3 & \mbox{#4}\\
#5 & \mbox{#6}\\
\end{array} \right.}
\newcommand{\vecthree}[3]{
\begin{bmatrix}
#1\\
#2\\
#3
\end{bmatrix}
}
\newcommand{\vecthreethree}[9]{
\begin{bmatrix}
#1 & #2 & #3\\
#4 & #5 & #6\\
#7 & #8 & #9
\end{bmatrix}
}
"""
# -- Options for LaTeX output --------------------------------------------------
......@@ -180,7 +223,15 @@ htmlhelp_basename = 'opencv'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'opencv.tex', u'The OpenCV Reference Manual',
('modules/refman', 'opencv2refman.tex', u'The OpenCV Reference Manual',
u'', 'manual'),
('doc/opencv1/c/c_index', 'opencv1refman_c.tex', u'The OpenCV 1.x C Reference Manual',
u'', 'manual'),
('doc/opencv1/py/py_index', 'opencv1refman_py.tex', u'The OpenCV 1.x Python Reference Manual',
u'', 'manual'),
('doc/user_guide/user_guide', 'opencv_user.tex', u'The OpenCV User Guide',
u'', 'manual'),
('doc/tutorials/tutorials', 'opencv_tutorials.tex', u'The OpenCV Tutorials',
u'', 'manual'),
]
......@@ -192,7 +243,7 @@ latex_elements = {'preamble': '\usepackage{mymath}\usepackage{amssymb}\usepackag
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
latex_use_parts = False
# If true, show page references after internal links.
#latex_show_pagerefs = False
......
\ProvidesPackage{opencv}
\lstset{ %
language=Python, % choose the language of the code
%basicstyle=\footnotesize, % the size of the fonts that are used for the code
%numbers=left, % where to put the line-numbers
%numberstyle=\footnotesize, % the size of the fonts that are used for the line-numbers
%stepnumber=2, % the step between two line-numbers. If it's 1 each line will be numbered
%numbersep=5pt, % how far the line-numbers are from the code
%backgroundcolor=\color{white}, % choose the background color. You must add \usepackage{color}
showspaces=false, % show spaces adding particular underscores
showstringspaces=false, % underline spaces within strings
showtabs=false, % show tabs within strings adding particular underscores
%frame=single, % adds a frame around the code
%tabsize=2, % sets default tabsize to 2 spaces
%captionpos=b, % sets the caption-position to bottom
%breaklines=true, % sets automatic line breaking
%breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace
%escapeinside={\%*}{*)} % if you want to add a comment within your code
}
\newcommand{\wikiHref}[1]{\hspace{0.1in}\href{http://opencv.willowgarage.com/wiki/documentation/\targetlang/\curModule/#1}{(view/add comments)}}
\newcommand{\curModule}{}
\newcommand{\cvclass}[1]{
\ifthenelse{\equal{\targetlang}{cpp}}
{
\subsection[cv::#1]{cv::#1\wikiHref{#1}}
%\addcontentsline{toc}{subsection}{#1}
\index{cv...!#1}
}
{
\subsection[#1]{#1\wikiHref{#1}}
%\addcontentsline{toc}{subsection}{#1}
\index{cv...!#1}
}
}
\newcommand{\cvfunc}[1]{
\subsection[#1]{#1\wikiHref{#1}}
%\addcontentsline{toc}{subsection}{#1}
\index{cv...!#1}
}
\newcommand{\cvstruct}[1]{
\subsection[#1]{#1\wikiHref{#1}}
%\addcontentsline{toc}{subsection}{#1}
\index{cv...!#1}
}
\newcommand{\cvmacro}[1]{
\subsection[#1]{#1\wikiHref{#1}}
%\addcontentsline{toc}{subsection}{#1}
\index{cv...!#1}
}
\newcommand{\cvarg}[2]{
\item[\texttt{#1}] #2
}
\newcommand{\cvFunc}[2]{
\ifthenelse{\equal{\targetlang}{c}}
{\subsection[cv::#1]{cv#1\wikiHref{#1}}\index{cv#1}\label{cfunc.#1}}
{\ifthenelse{\equal{\targetlang}{cpp}}
{\subsection[cv::#2]{cv::#2\wikiHref{#2}}\index{cv::#2}\label{cppfunc.#2}}
{\subsection[cv::#1]{cv.#1\wikiHref{#1}}\index{cv.#1}\label{pyfunc.#1}}}}
\newcommand{\cvCPyFunc}[1]{\cvFunc{#1}{}}
\newcommand{\cvCppFunc}[1]{\cvFunc{}{#1}}
\newcommand{\cvCross}[2]{
\ifthenelse{\equal{\targetlang}{c}}
{\hyperref[cfunc.#1]{cv#1}}
{\ifthenelse{\equal{\targetlang}{cpp}}
{\hyperref[cppfunc.#2]{cv::#2}}
{\hyperref[pyfunc.#1]{cv.#1}}}}
\newcommand{\cvCPyCross}[1]{\cvCross{#1}{}}
\newcommand{\cvCppCross}[1]{\cvCross{}{#1}}
\newcommand{\cvdefC}[1]{
\ifthenelse{\equal{\targetlang}{c}}{
\begin{shaded}
\begin{alltt}
\setlength{\parindent}{1in}
#1
\end{alltt}
\end{shaded}
}{}
}
\newcommand{\cvdefCpp}[1]{
\ifthenelse{\equal{\targetlang}{cpp}}{
\begin{shaded}
\begin{alltt}
\setlength{\parindent}{1in}
#1
\end{alltt}
\end{shaded}
}{}
}
\newcommand{\cvdefPy}[1]{
\ifthenelse{\equal{\targetlang}{python}}{
\begin{shaded}
\begin{alltt}
\setlength{\parindent}{1in}
#1
\end{alltt}
\end{shaded}
}{}
}
\newcommand{\cvC}[1]{
\ifthenelse{\equal{\targetlang}{c}}{#1}{}
}
\newcommand{\cvCpp}[1]{
\ifthenelse{\equal{\targetlang}{cpp}}{#1}{}
}
\newcommand{\cvPy}[1]{
\ifthenelse{\equal{\targetlang}{python}}{#1}{}}
\newcommand{\cvCPy}[1]{
\ifthenelse{\equal{\targetlang}{c}\or\equal{\targetlang}{python}}{#1}{}
}
\newcommand{\cvcode}[1]{
\begin{shaded}
\begin{alltt}
\setlength{\parindent}{1in}
#1
\end{alltt}
\end{shaded}
}
%\newcommand{\cross}[1]{#1 (page \pageref{#1})}
\newcommand{\cross}[1]{ \hyperref[#1]{#1} }
\newcommand{\matTT}[9]{
\[
\left|\begin{array}{ccc}
#1 & #2 & #3\\
#4 & #5 & #6\\
#7 & #8 & #9
\end{array}\right|
\]
}
\newcommand{\fork}[4]{
\left\{
\begin{array}{l l}
#1 & \mbox{#2}\\
#3 & \mbox{#4}\\
\end{array} \right.}
\newcommand{\forkthree}[6]{
\left\{
\begin{array}{l l}
#1 & \mbox{#2}\\
#3 & \mbox{#4}\\
#5 & \mbox{#6}\\
\end{array} \right.}
\newcommand{\vecthree}[3]{
\begin{bmatrix}
#1\\
#2\\
#3
\end{bmatrix}
}
\newcommand{\vecthreethree}[9]{
\begin{bmatrix}
#1 & #2 & #3\\
#4 & #5 & #6\\
#7 & #8 & #9
\end{bmatrix}
}
% allow special plastex handling
\newif\ifplastex
\plastexfalse
project(opencv_refman1)
file(GLOB_RECURSE OPENCV1_FILES_PICT pics/*.png pics/*.jpg)
file(GLOB_RECURSE OPENCV1_FILES_RST *.rst)
add_custom_target(refman1
${SPHINX_BUILD}
-b latex -c ${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR} .
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/../pics ${CMAKE_CURRENT_BINARY_DIR}/pics
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_SOURCE_DIR}/../mymath.sty ${CMAKE_CURRENT_BINARY_DIR}
COMMAND ${PDFLATEX_COMPILER} opencv1x
COMMAND ${PDFLATEX_COMPILER} opencv1x
DEPENDS conf.py ${OPENCV1_FILES_RST} ${OPENCV1_FILES_PICT}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating the OpenCV 1.x Reference Manual")
#install(FILES ${CURRENT_BINARY_DIR}/opencv1x.pdf DESTINATION "${OPENCV_DOC_INSTALL_PATH}" COMPONENT main)
###########
C Reference
###########
##########################
OpenCV 1.x C API Reference
##########################
.. highlight:: python
......
......@@ -157,7 +157,7 @@ The functions below use the above model to
CalcImageHomography
-------------------
`id=0.733621944503 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CalcImageHomography>`__
......@@ -202,7 +202,7 @@ in the OpenCV Guide 3D Reconstruction Chapter).
CalibrateCamera2
----------------
`id=0.047494999013 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CalibrateCamera2>`__
......@@ -346,7 +346,7 @@ See also:
ComputeCorrespondEpilines
-------------------------
`id=0.245813963965 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ComputeCorrespondEpilines>`__
......@@ -422,7 +422,7 @@ Line coefficients are defined up to a scale. They are normalized, such that
ConvertPointsHomogeneous
------------------------
`id=0.283238515237 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ConvertPointsHomogeneous>`__
......@@ -467,7 +467,7 @@ If the output array dimensionality is larger, an extra 1 is appended to each poi
CreatePOSITObject
-----------------
`id=0.908065035962 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CreatePOSITObject>`__
......@@ -512,7 +512,7 @@ must be called to free memory.
CreateStereoBMState
-------------------
`id=0.967939258435 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CreateStereoBMState>`__
......@@ -555,7 +555,7 @@ the calls to
CreateStereoGCState
-------------------
`id=0.358252470639 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CreateStereoGCState>`__
......@@ -588,7 +588,7 @@ The function creates the stereo correspondence structure and initializes it. It
CvStereoBMState
---------------
`id=0.343226402356 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CvStereoBMState>`__
.. ctype:: CvStereoBMState
......@@ -760,7 +760,7 @@ Note that the algorithm searches for the corresponding blocks in x direction onl
CvStereoGCState
---------------
`id=0.177638065166 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/CvStereoGCState>`__
.. ctype:: CvStereoGCState
......@@ -817,7 +817,7 @@ and then override necessary parameters if needed.
DecomposeProjectionMatrix
-------------------------
`id=0.0345049807701 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/DecomposeProjectionMatrix>`__
......@@ -872,7 +872,7 @@ The function is based on
DrawChessboardCorners
---------------------
`id=0.976073399441 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/DrawChessboardCorners>`__
......@@ -912,7 +912,7 @@ The function draws the individual chessboard corners detected as red circles if
FindChessboardCorners
---------------------
`id=0.171470909447 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindChessboardCorners>`__
......@@ -1010,7 +1010,7 @@ the function requires some white space (like a square-thick border, the wider th
FindExtrinsicCameraParams2
--------------------------
`id=0.220088405626 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindExtrinsicCameraParams2>`__
......@@ -1064,7 +1064,7 @@ The function's counterpart in the C++ API is
FindFundamentalMat
------------------
`id=0.704773042204 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindFundamentalMat>`__
......@@ -1185,7 +1185,7 @@ to compute the rectification transformation.
FindHomography
--------------
`id=0.447400721885 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindHomography>`__
......@@ -1318,7 +1318,7 @@ See also:
FindStereoCorrespondenceBM
--------------------------
`id=0.0255529902071 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindStereoCorrespondenceBM>`__
......@@ -1359,7 +1359,7 @@ in the case of 16-bit fixed-point disparity map)
FindStereoCorrespondenceGC
--------------------------
`id=0.989115762769 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/FindStereoCorrespondenceGC>`__
......@@ -1487,7 +1487,7 @@ left disparity images are usually negative):
GetOptimalNewCameraMatrix
-------------------------
`id=0.809174556358 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/GetOptimalNewCameraMatrix>`__
......@@ -1546,7 +1546,7 @@ to produce the maps for
InitIntrinsicParams2D
---------------------
`id=0.266047155492 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/InitIntrinsicParams2D>`__
......@@ -1590,7 +1590,7 @@ Currently, the function only supports planar calibration patterns, i.e. patterns
InitUndistortMap
----------------
`id=0.851817673191 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/InitUndistortMap>`__
......@@ -1633,7 +1633,7 @@ is identity matrix and
InitUndistortRectifyMap
-----------------------
`id=0.249366479773 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/InitUndistortRectifyMap>`__
......@@ -1742,7 +1742,7 @@ can be chosen arbitrarily.
POSIT
-----
`id=0.678024470382 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/POSIT>`__
......@@ -1789,7 +1789,7 @@ serves to stop the algorithm if the difference is small.
ProjectPoints2
--------------
`id=0.0577222169105 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ProjectPoints2>`__
......@@ -1868,7 +1868,7 @@ to 3x3 identity matrix, or by passing zero distortion coefficients, you can get
ReprojectImageTo3D
------------------
`id=0.134721984306 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ReprojectImageTo3D>`__
......@@ -1927,7 +1927,7 @@ matrix, e.g. the one computed by
RQDecomp3x3
-----------
`id=0.744854921725 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/RQDecomp3x3>`__
......@@ -1978,7 +1978,7 @@ that could be used in OpenGL.
ReleasePOSITObject
------------------
`id=0.26823386799 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ReleasePOSITObject>`__
......@@ -2008,7 +2008,7 @@ The function releases memory previously allocated by the function
ReleaseStereoBMState
--------------------
`id=0.746678435544 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ReleaseStereoBMState>`__
......@@ -2036,7 +2036,7 @@ The function releases the stereo correspondence structure and all the associated
ReleaseStereoGCState
--------------------
`id=0.279280186521 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/ReleaseStereoGCState>`__
......@@ -2064,7 +2064,7 @@ The function releases the stereo correspondence structure and all the associated
Rodrigues2
----------
`id=0.23072370096 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/Rodrigues2>`__
......@@ -2123,7 +2123,7 @@ or
StereoCalibrate
---------------
`id=0.348893862152 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/StereoCalibrate>`__
......@@ -2273,7 +2273,7 @@ The function returns the final value of the re-projection error.
StereoRectify
-------------
`id=0.753398392404 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/StereoRectify>`__
......@@ -2419,7 +2419,7 @@ and
StereoRectifyUncalibrated
-------------------------
`id=0.622333108977 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/StereoRectifyUncalibrated>`__
......@@ -2477,7 +2477,7 @@ and then the images can be corrected using
Undistort2
----------
`id=0.329515394146 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/Undistort2>`__
......@@ -2541,7 +2541,7 @@ need to be scaled accordingly, while the distortion coefficients remain the same
UndistortPoints
---------------
`id=0.111600695455 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/calib3d/UndistortPoints>`__
......
......@@ -69,7 +69,7 @@ CvPoint
CvPoint2D32f
------------
`id=0.245532424939 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvPoint2D32f>`__
.. ctype:: CvPoint2D32f
......@@ -138,7 +138,7 @@ CvPoint2D32f
CvPoint3D32f
------------
`id=0.0440394368915 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvPoint3D32f>`__
.. ctype:: CvPoint3D32f
......@@ -213,7 +213,7 @@ CvPoint3D32f
CvPoint2D64f
------------
`id=0.709504732939 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvPoint2D64f>`__
.. ctype:: CvPoint2D64f
......@@ -282,7 +282,7 @@ CvPoint2D64f
CvPoint3D64f
------------
`id=0.0506448340848 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvPoint3D64f>`__
.. ctype:: CvPoint3D64f
......@@ -357,7 +357,7 @@ CvPoint3D64f
CvSize
------
`id=0.554248071465 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvSize>`__
.. ctype:: CvSize
......@@ -423,7 +423,7 @@ Pixel-accurate size of a rectangle.
CvSize2D32f
-----------
`id=0.905432526523 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvSize2D32f>`__
.. ctype:: CvSize2D32f
......@@ -489,7 +489,7 @@ Sub-pixel accurate size of a rectangle.
CvRect
------
`id=0.213953446247 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvRect>`__
.. ctype:: CvRect
......@@ -573,7 +573,7 @@ Offset (usually the top-left corner) and size of a rectangle.
CvScalar
--------
`id=0.760314360939 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvScalar>`__
.. ctype:: CvScalar
......@@ -630,7 +630,7 @@ A container for 1-,2-,3- or 4-tuples of doubles.
CvTermCriteria
--------------
`id=0.267162264997 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvTermCriteria>`__
.. ctype:: CvTermCriteria
......@@ -716,7 +716,7 @@ Termination criteria for iterative algorithms.
CvMat
-----
`id=0.465191243774 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvMat>`__
.. ctype:: CvMat
......@@ -830,7 +830,7 @@ Matrices are stored row by row. All of the rows are aligned by 4 bytes.
CvMatND
-------
`id=0.322223772253 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvMatND>`__
.. ctype:: CvMatND
......@@ -925,7 +925,7 @@ Multi-dimensional dense multi-channel array.
CvSparseMat
-----------
`id=0.451492537542 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvSparseMat>`__
.. ctype:: CvSparseMat
......@@ -1050,7 +1050,7 @@ Multi-dimensional sparse multi-channel array.
IplImage
--------
`id=0.99460273838 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/IplImage>`__
.. ctype:: IplImage
......@@ -1341,7 +1341,7 @@ In addition to the above restrictions, OpenCV handles ROIs differently. OpenCV f
CvArr
-----
`id=0.322048506688 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvArr>`__
.. ctype:: CvArr
......
......@@ -12,7 +12,7 @@ Clustering
KMeans2
-------
`id=0.323145542573 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/KMeans2>`__
......@@ -176,7 +176,7 @@ matrix.
SeqPartition
------------
`id=0.684667795556 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/SeqPartition>`__
......
......@@ -53,7 +53,7 @@ is simply copied to the repainted pixels. Thus, if you want to paint semi-transp
Circle
------
`id=0.533309560434 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Circle>`__
......@@ -100,7 +100,7 @@ given center and radius.
ClipLine
--------
`id=0.773573058754 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ClipLine>`__
......@@ -134,7 +134,7 @@ It returns 0 if the line segment is completely outside the image and 1 otherwise
DrawContours
------------
`id=0.180838715035 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/DrawContours>`__
......@@ -237,7 +237,7 @@ Example: Connected component detection via contour functions
Ellipse
-------
`id=0.702580088492 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Ellipse>`__
......@@ -304,7 +304,7 @@ Parameters of Elliptic Arc
EllipseBox
----------
`id=0.594855594674 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/EllipseBox>`__
......@@ -348,7 +348,7 @@ do. The ellipse drawn is clipped by ROI rectangle. A piecewise-linear approximat
FillConvexPoly
--------------
`id=0.492328679574 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/FillConvexPoly>`__
......@@ -397,7 +397,7 @@ line) twice at the most.
FillPoly
--------
`id=0.225907613807 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/FillPoly>`__
......@@ -445,7 +445,7 @@ areas with holes, contour self-intersection, and so forth.
GetTextSize
-----------
`id=0.524127677241 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetTextSize>`__
......@@ -482,7 +482,7 @@ The function calculates the dimensions of a rectangle to enclose a text string w
InitFont
--------
`id=0.0379839040886 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/InitFont>`__
......@@ -558,7 +558,7 @@ The function initializes the font structure that can be passed to text rendering
InitLineIterator
----------------
`id=0.82383633716 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/InitLineIterator>`__
......@@ -655,7 +655,7 @@ Example: Using line iterator to calculate the sum of pixel values along the colo
Line
----
`id=0.447321958155 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Line>`__
......@@ -725,7 +725,7 @@ the line color, the user may use the macro
PolyLine
--------
`id=0.384796564044 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/PolyLine>`__
......@@ -779,7 +779,7 @@ The function draws single or multiple polygonal curves.
PutText
-------
`id=0.662272934911 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/PutText>`__
......@@ -822,7 +822,7 @@ replaced with the symbol for a rectangle.
Rectangle
---------
`id=0.025949516421 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Rectangle>`__
......@@ -872,7 +872,7 @@ and
CV_RGB
------
`id=0.708413350932 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CV_RGB>`__
......
This diff is collapsed.
This diff is collapsed.
......@@ -215,7 +215,7 @@ Example: Use of Error Handling Macros
GetErrStatus
------------
`id=0.158872599983 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetErrStatus>`__
......@@ -249,7 +249,7 @@ error mode.
SetErrStatus
------------
`id=0.548990286602 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/SetErrStatus>`__
......@@ -283,7 +283,7 @@ or
GetErrMode
----------
`id=0.395450807117 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetErrMode>`__
......@@ -306,7 +306,7 @@ call.
SetErrMode
----------
`id=0.837950474175 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/SetErrMode>`__
......@@ -348,7 +348,7 @@ The function sets the specified error mode. For descriptions of different error
Error
-----
`id=0.755789688999 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Error>`__
......@@ -392,7 +392,7 @@ The function sets the error status to the specified value (via
ErrorStr
--------
`id=0.116403749541 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ErrorStr>`__
......@@ -422,7 +422,7 @@ returns a NULL pointer.
RedirectError
-------------
`id=0.0620147644903 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/RedirectError>`__
......@@ -480,7 +480,7 @@ to make a decision.
cvNulDevReport cvStdErrReport cvGuiBoxReport
--------------------------------------------
`id=0.940927070556 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/cvNulDevReport%20cvStdErrReport%20cvGuiBoxReport>`__
......@@ -576,7 +576,7 @@ If the error handler is set to
Alloc
-----
`id=0.593055881775 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Alloc>`__
......@@ -618,7 +618,7 @@ function.
Free
----
`id=0.667310584005 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Free>`__
......@@ -652,7 +652,7 @@ does nothing.
GetTickCount
------------
`id=0.0577183375288 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetTickCount>`__
......@@ -675,7 +675,7 @@ The function returns number of the ticks starting from some platform-dependent e
GetTickFrequency
----------------
`id=0.796183003536 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetTickFrequency>`__
......@@ -700,7 +700,7 @@ will give the number of microseconds starting from the platform-dependent event.
RegisterModule
--------------
`id=0.265903415766 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/RegisterModule>`__
......@@ -775,7 +775,7 @@ on how IPP and MKL are connected to the modules.
GetModuleInfo
-------------
`id=0.510096912729 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetModuleInfo>`__
......@@ -812,7 +812,7 @@ text strings.
UseOptimized
------------
`id=0.657951043449 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/UseOptimized>`__
......@@ -851,7 +851,7 @@ the program (actually, it will only increase the startup time).
SetMemoryManager
----------------
`id=0.591055548987 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/SetMemoryManager>`__
......@@ -925,7 +925,7 @@ pointers are
SetIPLAllocators
----------------
`id=0.433242475449 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/SetIPLAllocators>`__
......
......@@ -12,7 +12,7 @@ XML/YAML Persistence
CvFileStorage
-------------
`id=0.857247720381 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvFileStorage>`__
.. ctype:: CvFileStorage
......@@ -97,7 +97,7 @@ file, .xml for XML files and .yml or .yaml for YAML.
CvFileNode
----------
`id=0.608842304291 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvFileNode>`__
.. ctype:: CvFileNode
......@@ -263,7 +263,7 @@ functions.
CvAttrList
----------
`id=0.988512335517 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvAttrList>`__
.. ctype:: CvAttrList
......@@ -309,7 +309,7 @@ attribute).
CvTypeInfo
----------
`id=0.181522293243 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/CvTypeInfo>`__
.. ctype:: CvTypeInfo
......@@ -383,7 +383,7 @@ standard types and override the basic methods.
Clone
-----
`id=0.360041292134 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Clone>`__
......@@ -413,7 +413,7 @@ with the passed object.
EndWriteStruct
--------------
`id=0.211232129115 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/EndWriteStruct>`__
......@@ -441,7 +441,7 @@ The function finishes the currently written structure.
FindType
--------
`id=0.0662543825018 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/FindType>`__
......@@ -470,7 +470,7 @@ The function finds a registered type by its name. It returns NULL if there is no
FirstType
---------
`id=0.938501911774 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/FirstType>`__
......@@ -497,7 +497,7 @@ structure.
GetFileNode
-----------
`id=0.800469512645 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetFileNode>`__
......@@ -538,7 +538,7 @@ discussion). Also, the function can insert a new node, if it is not in the map y
GetFileNodeByName
-----------------
`id=0.715012469883 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetFileNodeByName>`__
......@@ -587,7 +587,7 @@ and
GetFileNodeName
---------------
`id=0.83341764078 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetFileNodeName>`__
......@@ -620,7 +620,7 @@ is
GetHashedKey
------------
`id=0.30931895543 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetHashedKey>`__
......@@ -748,7 +748,7 @@ in a single numeric sequence.
GetRootFileNode
---------------
`id=0.971822903294 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/GetRootFileNode>`__
......@@ -786,7 +786,7 @@ may be used as a base for recursive traversal of the file storage.
Load
----
`id=0.212907012591 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Load>`__
......@@ -829,7 +829,7 @@ should pass a valid memory storage destination to the function.
OpenFileStorage
---------------
`id=0.471296965858 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/OpenFileStorage>`__
......@@ -891,7 +891,7 @@ structure.
Read
----
`id=0.832153339685 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Read>`__
......@@ -943,7 +943,7 @@ using the generic
ReadByName
----------
`id=0.859151866222 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadByName>`__
......@@ -984,7 +984,7 @@ and
ReadInt
-------
`id=0.251615646906 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadInt>`__
......@@ -1032,7 +1032,7 @@ result is not determined.
ReadIntByName
-------------
`id=0.556319809758 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadIntByName>`__
......@@ -1074,7 +1074,7 @@ and
ReadRawData
-----------
`id=0.664870960197 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadRawData>`__
......@@ -1111,7 +1111,7 @@ The function reads elements from a file node that represents a sequence of scala
ReadRawDataSlice
----------------
`id=0.0436069303098 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadRawDataSlice>`__
......@@ -1165,7 +1165,7 @@ using
ReadReal
--------
`id=0.547608842907 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadReal>`__
......@@ -1213,7 +1213,7 @@ and returned. Otherwise the result is not determined.
ReadRealByName
--------------
`id=0.199185093644 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadRealByName>`__
......@@ -1254,7 +1254,7 @@ and
ReadString
----------
`id=0.228184525072 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadString>`__
......@@ -1295,7 +1295,7 @@ is returned. Otherwise the result is not determined.
ReadStringByName
----------------
`id=0.742009259569 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReadStringByName>`__
......@@ -1336,7 +1336,7 @@ and
RegisterType
------------
`id=0.10246276777 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/RegisterType>`__
......@@ -1368,7 +1368,7 @@ so the user should delete it after calling the function.
Release
-------
`id=0.367773300801 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Release>`__
......@@ -1398,7 +1398,7 @@ with the double pointer.
ReleaseFileStorage
------------------
`id=0.300689925981 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/ReleaseFileStorage>`__
......@@ -1426,7 +1426,7 @@ The function closes the file associated with the storage and releases all the te
Save
----
`id=0.697129486728 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Save>`__
......@@ -1468,7 +1468,7 @@ The function saves an object to a file. It provides a simple interface to
StartNextStream
---------------
`id=0.540837242781 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/StartNextStream>`__
......@@ -1496,7 +1496,7 @@ The function starts the next stream in file storage. Both YAML and XML support m
StartReadRawData
----------------
`id=0.262029855416 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/StartReadRawData>`__
......@@ -1532,7 +1532,7 @@ The function initializes the sequence reader to read data from a file node. The
StartWriteStruct
----------------
`id=0.604510957069 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/StartWriteStruct>`__
......@@ -1598,7 +1598,7 @@ function for a some user object (see
TypeOf
------
`id=0.618133406874 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/TypeOf>`__
......@@ -1631,7 +1631,7 @@ the latter case, the function returns NULL.
UnregisterType
--------------
`id=0.894988383071 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/UnregisterType>`__
......@@ -1668,7 +1668,7 @@ iterating the type list, starting from
Write
-----
`id=0.950003121002 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/Write>`__
......@@ -1784,7 +1784,7 @@ description:
WriteComment
------------
`id=0.075756561075 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteComment>`__
......@@ -1818,7 +1818,7 @@ The function writes a comment into file storage. The comments are skipped when t
WriteFileNode
-------------
`id=0.595246053119 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteFileNode>`__
......@@ -1856,7 +1856,7 @@ The function writes a copy of a file node to file storage. Possible applications
WriteInt
--------
`id=0.339025962084 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteInt>`__
......@@ -1890,7 +1890,7 @@ The function writes a single integer value (with or without a name) to the file
WriteRawData
------------
`id=0.300064906822 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteRawData>`__
......@@ -1968,7 +1968,7 @@ have a name, they should be written to a sequence rather than a map.
WriteReal
---------
`id=0.882217128317 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteReal>`__
......@@ -2033,7 +2033,7 @@ registering a new type.
WriteString
-----------
`id=0.310765342599 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/core/WriteString>`__
......
......@@ -29,7 +29,7 @@ Feature detection and description
ExtractSURF
-----------
`id=0.726137466362 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/features2d/ExtractSURF>`__
......@@ -136,7 +136,7 @@ demo in OpenCV samples directory.
GetStarKeypoints
----------------
`id=0.460873667573 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/features2d/GetStarKeypoints>`__
......
......@@ -87,7 +87,7 @@ The following code is an example used to generate the figure.
SetWindowProperty
-----------------
`id=0.0287199623208 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SetWindowProperty>`__
......@@ -158,7 +158,7 @@ allows to change the window's properties.
GetWindowProperty
-----------------
`id=0.951341223423 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GetWindowProperty>`__
......@@ -209,7 +209,7 @@ return window's properties.
FontQt
------
`id=0.31590502208 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/FontQt>`__
:ref:`addText`
......@@ -304,7 +304,7 @@ A basic usage of this function is:
AddText
-------
`id=0.363444830722 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/AddText>`__
......@@ -352,7 +352,7 @@ using a specific font
DisplayOverlay
--------------
`id=0.523794338823 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/DisplayOverlay>`__
......@@ -391,7 +391,7 @@ aims at displaying useful information/tips on the window for a certain amount of
DisplayStatusBar
----------------
`id=0.240145617982 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/DisplayStatusBar>`__
......@@ -433,7 +433,7 @@ flags).
CreateOpenGLCallback
--------------------
`id=0.0904185033479 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CreateOpenGLCallback>`__
*_*
......@@ -531,7 +531,7 @@ can be used to draw 3D data on the window. An example of callback could be:
SaveWindowParameters
--------------------
`id=0.0271612689206 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SaveWindowParameters>`__
*_*
......@@ -561,7 +561,7 @@ saves size, location, flags, trackbars' value, zoom and panning location of the
LoadWindowParameters
--------------------
`id=0.700334072235 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/LoadWindowParameters>`__
*_*
......@@ -591,7 +591,7 @@ load size, location, flags, trackbars' value, zoom and panning location of the
CreateButton
------------
`id=0.718841096532 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CreateButton>`__
*_*
......
......@@ -12,7 +12,7 @@ Reading and Writing Images and Video
LoadImage
---------
`id=0.469255746245 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/LoadImage>`__
......@@ -82,7 +82,7 @@ Note that in the current implementation the alpha channel, if any, is stripped f
LoadImageM
----------
`id=0.563485365507 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/LoadImageM>`__
......@@ -153,7 +153,7 @@ Note that in the current implementation the alpha channel, if any, is stripped f
SaveImage
---------
`id=0.495970549198 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SaveImage>`__
......@@ -197,7 +197,7 @@ to save the image to XML or YAML format.
CvCapture
---------
`id=0.279260095238 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CvCapture>`__
.. ctype:: CvCapture
......@@ -224,7 +224,7 @@ does not have a public interface and is used only as a parameter for video captu
CaptureFromCAM
--------------
`id=0.051648241367 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CaptureFromCAM>`__
......@@ -259,7 +259,7 @@ To release the structure, use
CaptureFromFile
---------------
`id=0.832457799312 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CaptureFromFile>`__
......@@ -293,7 +293,7 @@ function.
GetCaptureProperty
------------------
`id=0.315272026867 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GetCaptureProperty>`__
......@@ -387,7 +387,7 @@ retrieves the specified property of the camera or video file.
GrabFrame
---------
`id=0.423832304356 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GrabFrame>`__
......@@ -422,7 +422,7 @@ should be used.
QueryFrame
----------
`id=0.155007724473 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/QueryFrame>`__
......@@ -456,7 +456,7 @@ and
ReleaseCapture
--------------
`id=0.412581622343 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/ReleaseCapture>`__
......@@ -489,7 +489,7 @@ or
RetrieveFrame
-------------
`id=0.780832955331 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/RetrieveFrame>`__
......@@ -522,7 +522,7 @@ function. The returned image should not be released or modified by the user. In
SetCaptureProperty
------------------
`id=0.0459451505183 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SetCaptureProperty>`__
......@@ -624,7 +624,7 @@ NB This function currently does nothing when using the latest CVS download on li
CreateVideoWriter
-----------------
`id=0.960560559623 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CreateVideoWriter>`__
......@@ -670,7 +670,7 @@ Which codecs and file formats are supported depends on the back end library. On
ReleaseVideoWriter
------------------
`id=0.271528060303 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/ReleaseVideoWriter>`__
......@@ -699,7 +699,7 @@ finishes writing to the video file and releases the structure.
WriteFrame
----------
`id=0.0551918795805 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/WriteFrame>`__
......
......@@ -12,7 +12,7 @@ User Interface
ConvertImage
------------
`id=0.770096998899 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/ConvertImage>`__
......@@ -56,7 +56,7 @@ converts one image to another and flips the result vertically if desired. The fu
CreateTrackbar
--------------
`id=0.331453824667 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/CreateTrackbar>`__
......@@ -130,7 +130,7 @@ By clicking on the label of each trackbar, it is possible to edit the trackbar's
DestroyAllWindows
-----------------
`id=0.237220691544 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/DestroyAllWindows>`__
......@@ -153,7 +153,7 @@ destroys all of the opened HighGUI windows.
DestroyWindow
-------------
`id=0.224383930532 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/DestroyWindow>`__
......@@ -183,7 +183,7 @@ destroys the window with the given name.
GetTrackbarPos
--------------
`id=0.99562223249 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GetTrackbarPos>`__
......@@ -226,7 +226,7 @@ qt-specific details:
GetWindowHandle
---------------
`id=0.506913773725 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GetWindowHandle>`__
......@@ -264,7 +264,7 @@ returns the native window handle inheriting from the Qt class QWidget.
GetWindowName
-------------
`id=0.793825437585 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/GetWindowName>`__
......@@ -301,7 +301,7 @@ returns the name of the window given its native handle (QWidget).
InitSystem
----------
`id=0.090225420475 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/InitSystem>`__
......@@ -349,7 +349,7 @@ is automatically called at the first cvNameWindow call.
MoveWindow
----------
`id=0.601355766212 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/MoveWindow>`__
......@@ -385,7 +385,7 @@ changes the position of the window.
NamedWindow
-----------
`id=0.661605671694 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/NamedWindow>`__
......@@ -456,7 +456,7 @@ qt-specific details:
ResizeWindow
------------
`id=0.689489754706 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/ResizeWindow>`__
......@@ -492,7 +492,7 @@ changes the size of the window.
SetMouseCallback
----------------
`id=0.619148465549 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SetMouseCallback>`__
......@@ -593,7 +593,7 @@ parameter is a combination of :
SetTrackbarPos
--------------
`id=0.998171131545 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/SetTrackbarPos>`__
......@@ -639,7 +639,7 @@ qt-specific details:
ShowImage
---------
`id=0.466244635488 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/ShowImage>`__
......@@ -691,7 +691,7 @@ flag then the image is shown with its original size, otherwise the image is scal
WaitKey
-------
`id=0.996058007458 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/highgui/WaitKey>`__
......
......@@ -12,7 +12,7 @@ Feature Detection
Canny
-----
`id=0.99528666363 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Canny>`__
......@@ -60,7 +60,7 @@ is used for edge linking, the largest value is used to find the initial segments
CornerEigenValsAndVecs
----------------------
`id=0.880597486716 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CornerEigenValsAndVecs>`__
......@@ -131,7 +131,7 @@ where
CornerHarris
------------
`id=0.765194293954 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CornerHarris>`__
......@@ -190,7 +190,7 @@ to the destination image. Corners in the image can be found as the local maxima
CornerMinEigenVal
-----------------
`id=0.956867089452 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CornerMinEigenVal>`__
......@@ -231,7 +231,7 @@ in terms of the previous function.
FindCornerSubPix
----------------
`id=0.941466183497 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FindCornerSubPix>`__
......@@ -336,7 +336,7 @@ and then iterates until the center keeps within a set threshold.
GoodFeaturesToTrack
-------------------
`id=0.0876392134647 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GoodFeaturesToTrack>`__
......@@ -423,7 +423,7 @@ will be the prefix of the output corners array with
HoughLines2
-----------
`id=0.689753287363 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/HoughLines2>`__
......@@ -611,7 +611,7 @@ case):
PreCornerDetect
---------------
`id=0.671562199289 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PreCornerDetect>`__
......@@ -681,7 +681,7 @@ The corners can be found as local maximums of the function below:
SampleLine
----------
`id=0.852353847021 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/SampleLine>`__
......
......@@ -69,7 +69,7 @@ and to the simplest and the fastest
GetRotationMatrix2D
-------------------
`id=0.623450579574 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetRotationMatrix2D>`__
......@@ -126,7 +126,7 @@ The transformation maps the rotation center to itself. If this is not the purpos
GetAffineTransform
------------------
`id=0.933805421933 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetAffineTransform>`__
......@@ -178,7 +178,7 @@ where
GetPerspectiveTransform
-----------------------
`id=0.709057737517 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetPerspectiveTransform>`__
......@@ -232,7 +232,7 @@ where
GetQuadrangleSubPix
-------------------
`id=0.480550634961 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetQuadrangleSubPix>`__
......@@ -301,7 +301,7 @@ The values of pixels at non-integer coordinates are retrieved using bilinear int
GetRectSubPix
-------------
`id=0.37305758361 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetRectSubPix>`__
......@@ -354,7 +354,7 @@ pixel values beyond the image boundaries.
LogPolar
--------
`id=0.0887380164552 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/LogPolar>`__
......@@ -487,7 +487,7 @@ is passed to it
Remap
-----
`id=0.485916549227 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Remap>`__
......@@ -547,7 +547,7 @@ Note that the function can not operate in-place.
Resize
------
`id=0.249690626324 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Resize>`__
......@@ -598,7 +598,7 @@ so that it fits exactly into
WarpAffine
----------
`id=0.0915967317176 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/WarpAffine>`__
......@@ -681,7 +681,7 @@ function from cxcore.
WarpPerspective
---------------
`id=0.647385091755 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/WarpPerspective>`__
......
......@@ -12,7 +12,7 @@ Histograms
CvHistogram
-----------
`id=0.29416496784 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvHistogram>`__
.. ctype:: CvHistogram
......@@ -48,7 +48,7 @@ Multi-dimensional histogram.
CalcBackProject
---------------
`id=0.262445080297 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcBackProject>`__
......@@ -108,7 +108,7 @@ That is the approximate algorithm of Camshift color object tracker, except for t
CalcBackProjectPatch
--------------------
`id=0.510320009557 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcBackProjectPatch>`__
......@@ -193,7 +193,7 @@ Back Project Calculation by Patches
CalcHist
--------
`id=0.247250829359 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcHist>`__
......@@ -301,7 +301,7 @@ input images.
CalcProbDensity
---------------
`id=0.806356307482 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcProbDensity>`__
......@@ -349,7 +349,7 @@ So the destination histogram bins are within less than
ClearHist
---------
`id=0.835401602212 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ClearHist>`__
......@@ -377,7 +377,7 @@ The function sets all of the histogram bins to 0 in the case of a dense histogra
CompareHist
-----------
`id=0.50848857362 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CompareHist>`__
......@@ -495,7 +495,7 @@ function.
CopyHist
--------
`id=0.454990024463 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CopyHist>`__
......@@ -537,7 +537,7 @@ as in
CreateHist
----------
`id=0.761254826094 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CreateHist>`__
......@@ -602,7 +602,7 @@ bin ranges, they assume thy are equally spaced in 0 to 255 bins.
GetHistValue*D
--------------
`id=0.909653638644 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetHistValue%2AD>`__
......@@ -668,7 +668,7 @@ return a pointer to the specified bin of the 1D, 2D, 3D or N-D histogram. In the
GetMinMaxHistValue
------------------
`id=0.649289865958 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetMinMaxHistValue>`__
......@@ -713,7 +713,7 @@ is returned.
MakeHistHeaderForArray
----------------------
`id=0.153593673347 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MakeHistHeaderForArray>`__
......@@ -759,7 +759,7 @@ does not need to be called afterwards. Only dense histograms can be initialized
NormalizeHist
-------------
`id=0.494984568711 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/NormalizeHist>`__
......@@ -792,7 +792,7 @@ The function normalizes the histogram bins by scaling them, such that the sum of
QueryHistValue*D
----------------
`id=0.0495732815752 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/QueryHistValue%2AD>`__
......@@ -844,7 +844,7 @@ The macros return the value of the specified bin of the 1D, 2D, 3D or N-D histog
ReleaseHist
-----------
`id=0.635490375005 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ReleaseHist>`__
......@@ -876,7 +876,7 @@ pointer is already
SetHistBinRanges
----------------
`id=0.097775620677 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/SetHistBinRanges>`__
......@@ -916,7 +916,7 @@ function, that can initialize the ranges as well. Ranges for the histogram bins
ThreshHist
----------
`id=0.2471087134 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ThreshHist>`__
......
......@@ -23,7 +23,7 @@ filter, then during the processing of the left-most pixels in each row we need p
IplConvKernel
-------------
`id=0.193062601082 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/IplConvKernel>`__
.. ctype:: IplConvKernel
......@@ -41,7 +41,7 @@ An IplConvKernel is a rectangular convolution kernel, created by function
CopyMakeBorder
--------------
`id=0.294015080522 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CopyMakeBorder>`__
......@@ -88,7 +88,7 @@ The function copies the source 2D array into the interior of the destination arr
CreateStructuringElementEx
--------------------------
`id=0.198112593438 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CreateStructuringElementEx>`__
......@@ -147,7 +147,7 @@ The function CreateStructuringElementEx allocates and fills the structure
Dilate
------
`id=0.862952069683 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Dilate>`__
......@@ -196,7 +196,7 @@ The function supports the in-place mode. Dilation can be applied several (
Erode
-----
`id=0.789537037619 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Erode>`__
......@@ -245,7 +245,7 @@ The function supports the in-place mode. Erosion can be applied several (
Filter2D
--------
`id=0.417959887843 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Filter2D>`__
......@@ -282,7 +282,7 @@ The function applies an arbitrary linear filter to the image. In-place operation
Laplace
-------
`id=0.525523278714 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Laplace>`__
......@@ -338,7 +338,7 @@ function, no scaling is done and the same combinations of input and output forma
MorphologyEx
------------
`id=0.564904115593 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MorphologyEx>`__
......@@ -442,7 +442,7 @@ is required for a morphological gradient and, in the case of in-place operation,
PyrDown
-------
`id=0.202607003604 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PyrDown>`__
......@@ -476,7 +476,7 @@ The function performs the downsampling step of the Gaussian pyramid decompositio
ReleaseStructuringElement
-------------------------
`id=0.80859820706 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ReleaseStructuringElement>`__
......@@ -509,7 +509,7 @@ is
Smooth
------
`id=0.653842638158 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Smooth>`__
......@@ -585,7 +585,7 @@ Median and bilateral filters work with 1- or 3-channel 8-bit images and can not
Sobel
-----
`id=0.415353284486 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Sobel>`__
......
......@@ -12,7 +12,7 @@ Miscellaneous Image Transformations
AdaptiveThreshold
-----------------
`id=0.746186116585 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/AdaptiveThreshold>`__
......@@ -106,7 +106,7 @@ pixel neighborhood, minus
CvtColor
--------
`id=0.233371940793 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvtColor>`__
......@@ -685,7 +685,7 @@ The function can do the following transformations:
DistTransform
-------------
`id=0.370026475978 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/DistTransform>`__
......@@ -832,7 +832,7 @@ Voronoi diagram for the binary image.
CvConnectedComp
---------------
`id=0.585492926457 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvConnectedComp>`__
.. ctype:: CvConnectedComp
......@@ -866,7 +866,7 @@ CvConnectedComp
FloodFill
---------
`id=0.303812867907 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FloodFill>`__
......@@ -1014,7 +1014,7 @@ is the value of one of pixel neighbors. That is, to be added to the connected co
Inpaint
-------
`id=0.233020618935 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Inpaint>`__
......@@ -1060,7 +1060,7 @@ The function reconstructs the selected image area from the pixel near the area b
Integral
--------
`id=0.247498066723 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Integral>`__
......@@ -1130,7 +1130,7 @@ It makes possible to do a fast blurring or fast block correlation with variable
PyrMeanShiftFiltering
---------------------
`id=0.448320960436 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PyrMeanShiftFiltering>`__
......@@ -1224,7 +1224,7 @@ running the meanshift procedure on the whole original image (i.e. when
PyrSegmentation
---------------
`id=0.0310203817733 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PyrSegmentation>`__
......@@ -1302,7 +1302,7 @@ should be 8-bit single-channel or 3-channel images or equal size.
Threshold
---------
`id=0.57512876324 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Threshold>`__
......
......@@ -12,7 +12,7 @@ Motion Analysis and Object Tracking
Acc
---
`id=0.999960514281 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Acc>`__
......@@ -57,7 +57,7 @@ or its selected region to the accumulator
MultiplyAcc
-----------
`id=0.550586168837 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MultiplyAcc>`__
......@@ -103,7 +103,7 @@ The function adds the product of 2 images or their selected regions to the accum
RunningAvg
----------
`id=0.0736920452652 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/RunningAvg>`__
......@@ -157,7 +157,7 @@ regulates the update speed (how fast the accumulator forgets about previous fram
SquareAcc
---------
`id=0.22065009551 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/SquareAcc>`__
......
......@@ -12,7 +12,7 @@ Object Detection
MatchTemplate
-------------
`id=0.133207508798 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MatchTemplate>`__
......
......@@ -12,7 +12,7 @@ Planar Subdivisions
CvSubdiv2D
----------
`id=0.0330142359402 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvSubdiv2D>`__
.. ctype:: CvSubdiv2D
......@@ -80,7 +80,7 @@ morphing, fast location of points on the plane, building special graphs
CvQuadEdge2D
------------
`id=0.774421357321 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvQuadEdge2D>`__
.. ctype:: CvQuadEdge2D
......@@ -131,7 +131,7 @@ Quad-edge is a basic element of subdivision containing four edges (e, eRot, reve
CvSubdiv2DPoint
---------------
`id=0.348865048627 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvSubdiv2DPoint>`__
.. ctype:: CvSubdiv2DPoint
......@@ -179,7 +179,7 @@ Point of original or dual subdivision.
CalcSubdivVoronoi2D
-------------------
`id=0.780234504298 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcSubdivVoronoi2D>`__
......@@ -210,7 +210,7 @@ cell at that point.
ClearSubdivVoronoi2D
--------------------
`id=0.598833189257 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ClearSubdivVoronoi2D>`__
......@@ -243,7 +243,7 @@ was modified after previous call to the function.
CreateSubdivDelaunay2D
----------------------
`id=0.740903386025 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CreateSubdivDelaunay2D>`__
......@@ -282,7 +282,7 @@ Note that the triangulation is a single large triangle that covers the given rec
FindNearestPoint2D
------------------
`id=0.89077983265 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FindNearestPoint2D>`__
......@@ -319,7 +319,7 @@ point. The function returns a pointer to the found subdivision vertex.
Subdiv2DEdgeDst
---------------
`id=0.475748447952 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Subdiv2DEdgeDst>`__
......@@ -352,7 +352,7 @@ can be calculated using the function
Subdiv2DGetEdge
---------------
`id=0.128594743275 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Subdiv2DGetEdge>`__
......@@ -417,7 +417,7 @@ The function returns one of the edges related to the input edge.
Subdiv2DNextEdge
----------------
`id=0.250529497726 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Subdiv2DNextEdge>`__
......@@ -455,7 +455,7 @@ is the input edge)
Subdiv2DLocate
--------------
`id=0.195353110226 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Subdiv2DLocate>`__
......@@ -536,7 +536,7 @@ The function locates the input point within the subdivision. There are 5 cases:
Subdiv2DRotateEdge
------------------
`id=0.808074440668 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Subdiv2DRotateEdge>`__
......@@ -587,7 +587,7 @@ The function returns one of the edges of the same quad-edge as the input edge.
SubdivDelaunay2DInsert
----------------------
`id=0.318236209384 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/SubdivDelaunay2DInsert>`__
......
......@@ -12,7 +12,7 @@ Structural Analysis and Shape Descriptors
ApproxChains
------------
`id=0.432936866636 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ApproxChains>`__
......@@ -63,7 +63,7 @@ fields of the returned structure.
ApproxPoly
----------
`id=0.861831385172 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ApproxPoly>`__
......@@ -109,7 +109,7 @@ correspondence).
ArcLength
---------
`id=0.382186875357 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ArcLength>`__
......@@ -154,7 +154,7 @@ The function calculates the length or curve as the sum of lengths of segments be
BoundingRect
------------
`id=0.99193394782 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/BoundingRect>`__
......@@ -200,7 +200,7 @@ Here is the list of possible combination of the flag values and type of
BoxPoints
---------
`id=0.15348377114 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/BoxPoints>`__
......@@ -258,7 +258,7 @@ Here is the function code:
CalcPGH
-------
`id=0.713512953819 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcPGH>`__
......@@ -303,7 +303,7 @@ definition). The histogram can be used for contour matching.
CalcEMD2
--------
`id=0.642501185958 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CalcEMD2>`__
......@@ -364,7 +364,7 @@ so that they cannot relate to the same object.
CheckContourConvexity
---------------------
`id=0.596409711678 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CheckContourConvexity>`__
......@@ -392,7 +392,7 @@ The function tests whether the input contour is convex or not. The contour must
CvConvexityDefect
-----------------
`id=0.0456666449216 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CvConvexityDefect>`__
.. ctype:: CvConvexityDefect
......@@ -432,7 +432,7 @@ Structure describing a single contour convexity defect.
ContourArea
-----------
`id=0.579530349862 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ContourArea>`__
......@@ -478,7 +478,7 @@ function from C runtime to get the absolute value of the area.
ContourFromContourTree
----------------------
`id=0.283577660364 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ContourFromContourTree>`__
......@@ -514,7 +514,7 @@ determines the accuracy and/or the number of tree levels used for reconstruction
ConvexHull2
-----------
`id=0.07365440701 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ConvexHull2>`__
......@@ -661,7 +661,7 @@ Example. Building convex hull for a sequence or array of points
ConvexityDefects
----------------
`id=0.246826049247 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ConvexityDefects>`__
......@@ -695,7 +695,7 @@ The function finds all convexity defects of the input contour and returns a sequ
CreateContourTree
-----------------
`id=0.116090901246 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/CreateContourTree>`__
......@@ -737,7 +737,7 @@ is less than or equal to 0, the function creates a full binary tree representati
EndFindContours
---------------
`id=0.772927708524 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/EndFindContours>`__
......@@ -765,7 +765,7 @@ The function finishes the scanning process and returns a pointer to the first co
FindContours
------------
`id=0.804514745402 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FindContours>`__
......@@ -874,7 +874,7 @@ is modified by this function.
FindNextContour
---------------
`id=0.251954589601 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FindNextContour>`__
......@@ -902,7 +902,7 @@ The function locates and retrieves the next contour in the image and returns a p
FitEllipse2
-----------
`id=0.639828157054 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FitEllipse2>`__
......@@ -938,7 +938,7 @@ not half-lengths.
FitLine
-------
`id=0.0204712084438 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/FitLine>`__
......@@ -1058,7 +1058,7 @@ is a distance function, one of:
GetCentralMoment
----------------
`id=0.574094648001 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetCentralMoment>`__
......@@ -1110,7 +1110,7 @@ are the coordinates of the gravity center:
GetHuMoments
------------
`id=0.56722466619 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetHuMoments>`__
......@@ -1156,7 +1156,7 @@ These values are proved to be invariant to the image scale, rotation, and reflec
GetNormalizedCentralMoment
--------------------------
`id=0.460978782732 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetNormalizedCentralMoment>`__
......@@ -1197,7 +1197,7 @@ The function retrieves the normalized central moment:
GetSpatialMoment
----------------
`id=0.768768789318 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/GetSpatialMoment>`__
......@@ -1244,7 +1244,7 @@ is the intensity of the pixel
MatchContourTrees
-----------------
`id=0.555027093069 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MatchContourTrees>`__
......@@ -1283,7 +1283,7 @@ The function calculates the value of the matching measure for two contour trees.
MatchShapes
-----------
`id=0.492880753336 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MatchShapes>`__
......@@ -1386,7 +1386,7 @@ respectively.
MinAreaRect2
------------
`id=0.325416946848 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MinAreaRect2>`__
......@@ -1425,7 +1425,7 @@ Picture. Minimal-area bounding rectangle for contour
MinEnclosingCircle
------------------
`id=0.232805538989 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/MinEnclosingCircle>`__
......@@ -1462,7 +1462,7 @@ if the resultant circle contains all the input points and zero otherwise
Moments
-------
`id=0.145895685877 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/Moments>`__
......@@ -1498,7 +1498,7 @@ The function calculates spatial and central moments up to the third order and wr
PointPolygonTest
----------------
`id=0.21757803031 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PointPolygonTest>`__
......@@ -1550,7 +1550,7 @@ Here is the sample output of the function, where each image pixel is tested agai
PointSeqFromMat
---------------
`id=0.728001629164 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/PointSeqFromMat>`__
......@@ -1635,7 +1635,7 @@ Here is a simple usage example.
ReadChainPoint
--------------
`id=0.760176226481 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/ReadChainPoint>`__
......@@ -1663,7 +1663,7 @@ The function returns the current chain point and updates the reader position.
StartFindContours
-----------------
`id=0.411171934048 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/StartFindContours>`__
......@@ -1708,7 +1708,7 @@ to retrieve the rest of the contours.
StartReadChainPoints
--------------------
`id=0.532234897641 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/StartReadChainPoints>`__
......@@ -1729,7 +1729,7 @@ The function initializes a special reader.
SubstituteContour
-----------------
`id=0.692706172642 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/imgproc/SubstituteContour>`__
......
......@@ -73,7 +73,7 @@ for details.
CvHaarFeature, CvHaarClassifier, CvHaarStageClassifier, CvHaarClassifierCascade
-------------------------------------------------------------------------------
`id=0.970306065104 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/CvHaarFeature%2C%20CvHaarClassifier%2C%20CvHaarStageClassifier%2C%20CvHaarClassifierCascade>`__
.. ctype:: CvHaarFeature, CvHaarClassifier, CvHaarStageClassifier, CvHaarClassifierCascade
......@@ -205,7 +205,7 @@ The whole hierarchy can be constructed manually or loaded from a file or an embe
LoadHaarClassifierCascade
-------------------------
`id=0.804773488212 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/LoadHaarClassifierCascade>`__
......@@ -246,7 +246,7 @@ function.
HaarDetectObjects
-----------------
`id=0.264108155188 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/HaarDetectObjects>`__
......@@ -409,7 +409,7 @@ The function finds rectangular regions in the given image that are likely to con
SetImagesForHaarClassifierCascade
---------------------------------
`id=0.160913357144 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/SetImagesForHaarClassifierCascade>`__
......@@ -455,7 +455,7 @@ function and reused again. The function is used to prepare cascade for detecting
ReleaseHaarClassifierCascade
----------------------------
`id=0.359777913959 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/ReleaseHaarClassifierCascade>`__
......@@ -487,7 +487,7 @@ or
RunHaarClassifierCascade
------------------------
`id=0.100465569078 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/objdetect/RunHaarClassifierCascade>`__
......
......@@ -12,7 +12,7 @@ Motion Analysis and Object Tracking
CalcGlobalOrientation
---------------------
`id=0.848432169537 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcGlobalOrientation>`__
......@@ -59,7 +59,7 @@ a circular sum of the basic orientation and the shift.
CalcMotionGradient
------------------
`id=0.691063668639 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcMotionGradient>`__
......@@ -143,7 +143,7 @@ neighborhood and assumes the gradient is valid only if
CalcOpticalFlowBM
-----------------
`id=0.754519759158 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcOpticalFlowBM>`__
......@@ -209,7 +209,7 @@ function call (if
CalcOpticalFlowHS
-----------------
`id=0.152735471909 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcOpticalFlowHS>`__
......@@ -257,7 +257,7 @@ Horn81
CalcOpticalFlowLK
-----------------
`id=0.853253276574 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcOpticalFlowLK>`__
......@@ -299,7 +299,7 @@ Lucas81
CalcOpticalFlowPyrLK
--------------------
`id=0.47107753089 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CalcOpticalFlowPyrLK>`__
......@@ -396,7 +396,7 @@ is set).
CamShift
--------
`id=0.583105572641 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CamShift>`__
......@@ -487,7 +487,7 @@ http://www.dai.ed.ac.uk/CVonline/LOCAL\_COPIES/ISARD1/condensation.html
CreateConDensation
------------------
`id=0.31878352255 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CreateConDensation>`__
......@@ -523,7 +523,7 @@ structure and returns a pointer to the structure.
ConDensInitSampleSet
--------------------
`id=0.386398764636 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/ConDensInitSampleSet>`__
......@@ -558,7 +558,7 @@ with values within the specified ranges.
CvKalman
--------
`id=0.625509453461 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CvKalman>`__
.. ctype:: CvKalman
......@@ -691,7 +691,7 @@ structure is allocated via
CreateKalman
------------
`id=0.495816671145 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/CreateKalman>`__
......@@ -728,7 +728,7 @@ and all its matrices and initializes them somehow.
KalmanCorrect
-------------
`id=0.247263362016 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/KalmanCorrect>`__
......@@ -902,7 +902,7 @@ Example. Using Kalman filter to track a rotating point
KalmanPredict
-------------
`id=0.406145730558 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/KalmanPredict>`__
......@@ -972,7 +972,7 @@ Synonym for
MeanShift
---------
`id=0.377464124859 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/MeanShift>`__
......@@ -1013,7 +1013,7 @@ of iterations. The function returns the number of iterations made.
ReleaseConDensation
-------------------
`id=0.860558456819 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/ReleaseConDensation>`__
......@@ -1043,7 +1043,7 @@ The function releases the structure
ReleaseKalman
-------------
`id=0.202454950979 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/ReleaseKalman>`__
......@@ -1073,7 +1073,7 @@ and all of the underlying matrices.
SegmentMotion
-------------
`id=0.604815881374 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/SegmentMotion>`__
......@@ -1125,7 +1125,7 @@ component
SnakeImage
----------
`id=0.376286588765 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/SnakeImage>`__
......@@ -1207,7 +1207,7 @@ iterations, the function terminates.
UpdateMotionHistory
-------------------
`id=0.131540988983 Comments from the Wiki <http://opencv.willowgarage.com/wiki/documentation/c/video/UpdateMotionHistory>`__
......
# -*- coding: utf-8 -*-
#
# opencvstd documentation build configuration file, created by
# sphinx-quickstart on Mon Feb 14 00:30:43 2011.
#
# This file is execfile()d with the current directory set to its containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys, os
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#sys.path.insert(0, os.path.abspath('.'))
# -- General configuration -----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
#needs_sphinx = '1.0'
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.pngmath', 'sphinx.ext.ifconfig', 'sphinx.ext.todo']
doctest_test_doctest_blocks = 'block'
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
source_suffix = '.rst'
# The encoding of source files.
#source_encoding = 'utf-8-sig'
# The master toctree document.
master_doc = 'index'
# General information about the project.
project = u'opencvrefman1x'
copyright = u'2011, opencv dev team'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '2.3'
# The full version, including alpha/beta/rc tags.
release = '2.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#language = None
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
# If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
todo_include_todos=True
# -- Options for HTML output ---------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
html_theme = 'blue'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#html_theme_options = {}
# Add any paths that contain custom themes here, relative to this directory.
html_theme_path = ['../_themes']
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# A shorter title for the navigation bar. Default is the same as html_title.
#html_short_title = None
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
html_logo = '../opencv-logo2.png'
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
#html_favicon = None
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['../_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
#html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
#html_additional_pages = {}
# If false, no module index is generated.
#html_domain_indices = True
# If false, no index is generated.
#html_use_index = True
# If true, the index is split into individual pages for each letter.
#html_split_index = False
# If true, links to the reST sources are added to the pages.
#html_show_sourcelink = True
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
#html_show_sphinx = True
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
#html_show_copyright = True
# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# This is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = None
# Output file base name for HTML help builder.
htmlhelp_basename = 'opencv1x'
# -- Options for LaTeX output --------------------------------------------------
# The paper size ('letter' or 'a4').
#latex_paper_size = 'letter'
# The font size ('10pt', '11pt' or '12pt').
#latex_font_size = '10pt'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'opencv1x.tex', u'The OpenCV 1.x API Reference Manual',
u'', 'manual'),
]
latex_elements = {'preamble': '\usepackage{mymath}\usepackage{amssymb}\usepackage{amsmath}\usepackage{bbm}'}
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
latex_use_parts = True
# If true, show page references after internal links.
#latex_show_pagerefs = False
# If true, show URL addresses after external links.
#latex_show_urls = False
# Additional stuff for the LaTeX preamble.
#latex_preamble = ''
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
#latex_domain_indices = True
# -- Options for manual page output --------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'opencv1x', u'The OpenCV 1.x API Reference Manual',
[u'opencv-dev@itseez.com'], 1)
]
Welcome to opencv 1.x reference manual
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Contents:
.. toctree::
:maxdepth: 2
c/c_index
py/py_index
bibliography
Indices and tables
~~~~~~~~~~~~~~~~~~
* :ref:`genindex`
* :ref:`search`
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment