2010-05-11 19:44:00 +02:00
|
|
|
\documentclass[11pt]{book}
|
|
|
|
\newcommand{\targetlang}{}
|
|
|
|
|
|
|
|
\usepackage{myopencv}
|
|
|
|
\usepackage{amsmath}
|
|
|
|
\usepackage{ifthen}
|
|
|
|
|
|
|
|
\def\genc{true}
|
|
|
|
\def\genpy{false}
|
|
|
|
\def\targetlang{cpp}
|
|
|
|
|
|
|
|
\title{OpenCV Reference Manual} % used by \maketitle
|
|
|
|
\author{v2.0} % used by \maketitle
|
|
|
|
\date{Nov 25, 2009} % used by \maketitle
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\maketitle % automatic title!
|
|
|
|
|
|
|
|
\setcounter{tocdepth}{8}
|
|
|
|
\tableofcontents
|
|
|
|
|
|
|
|
%%% Chapters %%%
|
2010-10-19 13:51:56 +02:00
|
|
|
\input{core_introduction}
|
|
|
|
|
|
|
|
\chapter{core. The Core Functionality}
|
|
|
|
\input{core_basic_structures}
|
|
|
|
\input{core_array_operations}
|
|
|
|
\input{core_dynamic_structures}
|
|
|
|
\input{core_drawing_functions}
|
|
|
|
\input{core_persistence}
|
|
|
|
\input{core_clustering_search}
|
|
|
|
\input{core_utilities_system_functions}
|
|
|
|
|
|
|
|
|
|
|
|
\chapter{imgproc. Image Processing}
|
|
|
|
\input{imgproc_histograms}
|
|
|
|
\input{imgproc_image_filtering}
|
|
|
|
\input{imgproc_image_warping}
|
|
|
|
\input{imgproc_image_transform}
|
|
|
|
\input{imgproc_struct_shape_analysis}
|
|
|
|
\input{imgproc_planar_subdivisions}
|
|
|
|
\input{imgproc_motion_tracking}
|
|
|
|
\input{imgproc_feature_detection}
|
|
|
|
|
|
|
|
\chapter{features2d. Feature Detection and Descriptor Extraction}
|
|
|
|
\input{features2d_feature_detection}
|
|
|
|
%\input{features2d_object_recognition}
|
|
|
|
%\input{features2d_object_detection}
|
|
|
|
|
|
|
|
\chapter{flann. Clustering and Search in Multi-Dimensional Spaces}
|
|
|
|
\input{flann}
|
|
|
|
|
|
|
|
\chapter{objdetect. Object Detection}
|
|
|
|
\input{objdetect}
|
|
|
|
|
|
|
|
\chapter{video. Video Analysis}
|
|
|
|
\input{video_motion_tracking}
|
|
|
|
|
|
|
|
\chapter{highgui. High-level GUI and Media I/O}
|
|
|
|
\input{highgui}
|
|
|
|
\ifPy %Qt is for C and Cpp, so do nothing
|
|
|
|
\else
|
|
|
|
\input{highgui_qt}
|
|
|
|
\fi
|
|
|
|
|
|
|
|
\chapter{calib3d. Camera Calibration, Pose Estimation and Stereo}
|
|
|
|
\input{calib3d}
|
|
|
|
|
2010-05-11 19:44:00 +02:00
|
|
|
|
|
|
|
\chapter{ml. Machine Learning}
|
2010-10-19 13:51:56 +02:00
|
|
|
\input{ml}
|
2010-05-11 19:44:00 +02:00
|
|
|
%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
\end{document} % End of document.
|