Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
4d65de17
Commit
4d65de17
authored
Feb 07, 2011
by
Ilya Lysenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added documentation for asymmetric pattern detection
parent
3e43bc57
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
calib3d.tex
doc/calib3d.tex
+6
-2
No files found.
doc/calib3d.tex
View file @
4d65de17
...
...
@@ -626,7 +626,7 @@ drawChessboardCorners(img, patternsize, Mat(corners), patternfound);
Finds the centers of the cirlces' grid.
\cvdefCpp
{
bool findCirclesGrid( const Mat
\&
image, Size patternSize,
\par
vector<Point2f>
\&
centers,
\par
int flags=
0
);
}
int flags=
CALIB
\_
CB
\_
SYMMETRIC
\_
GRID
);
}
\begin{description}
\cvarg
{
image
}{
Source circles' grid view; it must be an 8-bit grayscale or color
image
}
...
...
@@ -634,7 +634,11 @@ image}
( patternSize = Size( points
\_
per
\_
row, points
\_
per
\_
colum ) =
Size( columns, rows ) )
}
\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}
The function attempts to determine
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment