X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=doc%2Fopencv.tex;fp=doc%2Fopencv.tex;h=d72527f7ad2960bb7f4a19a384970d3fd92b9aeb;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=0000000000000000000000000000000000000000;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/doc/opencv.tex b/doc/opencv.tex new file mode 100644 index 0000000..d72527f --- /dev/null +++ b/doc/opencv.tex @@ -0,0 +1,114 @@ +\documentclass[11pt]{book} + +\usepackage{cite} +\usepackage[pdftex]{graphicx} +\usepackage{titlesec} +\usepackage{listings} +\usepackage{fancyvrb} +\usepackage[svgnames]{xcolor} +\usepackage{framed} +\usepackage{amsmath} +\usepackage{amssymb} +\usepackage{bbm} +\usepackage{hyperref} +\usepackage{makeidx} +\usepackage{color} + +\definecolor{shadecolor}{gray}{0.95} % Background color of title bars +\lstset{ +language=C, +basicstyle=\small\ttfamily, +backgroundcolor=\color{shadecolor} +} + +\definecolor{cvlinkcolor}{rgb}{0.0 0.3 0.8} + +% taken from http://en.wikibooks.org/wiki/LaTeX/Hyperlinks +\hypersetup{ + bookmarks=true, % show bookmarks bar? + unicode=false, % non-Latin characters in Acrobat’s bookmarks + %pdftoolbar=true, % show Acrobat’s toolbar? + %pdfmenubar=true, % show Acrobat’s menu? + %pdffitwindow=false, % window fit to page when opened + %pdfstartview={FitH}, % fits the width of the page to the window + %pdftitle={My title}, % title + %pdfauthor={Author}, % author + %pdfsubject={Subject}, % subject of the document + %pdfcreator={Creator}, % creator of the document + %pdfproducer={Producer}, % producer of the document + %pdfkeywords={keywords}, % list of keywords + %pdfnewwindow=true, % links in new window + colorlinks=true, % false: boxed links; true: colored links + linkcolor=cvlinkcolor, % color of internal links + citecolor=cvlinkcolor, % color of links to bibliography + filecolor=magenta, % color of file links + urlcolor=cyan % color of external links +} + +\makeindex + +\newcommand{\piRsquare}{\pi r^2} % This is my own macro !!! + +\usepackage{helvetica} +\usepackage{ifthen} +\usepackage{alltt} +\usepackage{opencv} + +%%% Margins %%% +\oddsidemargin 0.0in +\evensidemargin 0.0in +\textwidth 6.5in +%\headheight 1.0in +%\topmargin 0.5in +%\textheight 9.0in +%\footheight 1.0in +%%%%%%%%%%%%%%% + +\title{OpenCV Documentation} % used by \maketitle +\author{Authors} % used by \maketitle +\date{May 7, 2009} % used by \maketitle + +\begin{document} +\maketitle % automatic title! + +\setcounter{tocdepth}{8} +\tableofcontents + +\titleformat{\subsubsection} +{\titlerule +\vspace{.8ex}% +\normalfont\bfseries\Large} +{\thesection.}{.5em}{} + +%%% Define these to get rid of warnings +\def\genc{true} +\def\genpy{true} +\def\targetlang{c} + +\newif\ifC +\newif\ifPython +\ifthenelse{\equal{\targetlang}{c}}{\Ctrue}{\Pythontrue} + +%%% Chapters %%% +\include{CxCore} +\include{CvReference} +\include{CvAux} +\include{HighGui} +\include{MachineLearning} +\include{CxCore-cpp} +\include{Cv-cpp} +\include{CvAux-cpp} +\include{HighGui-cpp} +%\include{FAQ} +%%%%%%%%%%%%%%%% + +\addcontentsline{toc}{chapter}{Bibliography} +\bibliographystyle{plain} +{\small +\bibliography{opencv} +} + +\addcontentsline{toc}{chapter}{Index} +\printindex + +\end{document} % End of document.