Added documentation for asymmetric pattern detection

This commit is contained in:
Ilya Lysenkov 2011-02-07 08:00:16 +00:00
parent 3e43bc579b
commit 4d65de173e

View File

@ -626,7 +626,7 @@ drawChessboardCorners(img, patternsize, Mat(corners), patternfound);
Finds the centers of the cirlces' grid. Finds the centers of the cirlces' grid.
\cvdefCpp{bool findCirclesGrid( const Mat\& image, Size patternSize,\par \cvdefCpp{bool findCirclesGrid( const Mat\& image, Size patternSize,\par
vector<Point2f>\& centers,\par vector<Point2f>\& centers,\par
int flags=0 );} int flags=CALIB\_CB\_SYMMETRIC\_GRID );}
\begin{description} \begin{description}
\cvarg{image}{Source circles' grid view; it must be an 8-bit grayscale or color \cvarg{image}{Source circles' grid view; it must be an 8-bit grayscale or color
image} image}
@ -634,7 +634,11 @@ image}
( patternSize = Size( points\_per\_row, points\_per\_colum ) = ( patternSize = Size( points\_per\_row, points\_per\_colum ) =
Size( columns, rows ) )} Size( columns, rows ) )}
\cvarg{centers}{The output array of centers detected} \cvarg{centers}{The output array of centers detected}
\cvarg{flags}{Various operation flags, no flags are supported currently} \cvarg{flags}{Various operation flags, can be one of the following values:
\begin{description}
\cvarg{CALIB\_CB\_SYMMETRIC\_GRID}{use symmetric pattern of circles.}
\cvarg{CALIB\_CB\_ASYMMETRIC\_GRID}{use asymmetric pattern of circles.}
\end{description}}
\end{description} \end{description}
The function attempts to determine The function attempts to determine