fixed several typos in docs; make MLData capable of reading csv files with much more columns than before

This commit is contained in:
Vadim Pisarevsky
2010-12-04 18:37:07 +00:00
parent 3e7fbd21e0
commit 33d23ef27a
6 changed files with 27 additions and 28 deletions

View File

@@ -183,7 +183,7 @@ void drawCircle(Mat &image, int R, Point center)
}
\end{lstlisting}
\section{Namespace \texttt{cv} and Function Naming}
\section{Namespace cv and Function Naming}
All the newly introduced classes and functions are placed into \texttt{cv} namespace. Therefore, to access this functionality from your code, use \texttt{cv::} specifier or \texttt{"using namespace cv;"} directive:
\begin{lstlisting}