Draws the individual chessboard corners detected (as red circles) in case if the board was not found (patternWasFound== false) or the colored corners connected with lines when the board was found (patternWasFound == true).
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.1010 (2.2.0.1010)
Syntax
| | | | | | | | |
| C# | | | Visual Basic | | | Visual C++ | |
Public Shared Sub DrawChessboardCorners ( _
image As Image(Of Gray, Byte), _
patternSize As Size, _
corners As PointF(), _
patternWasFound As Boolean _
)
Parameters
- image
- Image<(Of <(<'Gray, Byte>)>)>
The destination image
- patternSize
- Size
The number of inner corners per chessboard row and column
- corners
- array<PointF>[]()[][]
The array of corners detected
- patternWasFound
- Boolean
Result of FindChessboardCorners
See Also