CvInvokeDrawChessboardCorners Method |
http://www.emgu.com
Draws the individual chessboard corners detected (as red circles) in case if the board was not found (pattern_was_found=0) or the colored corners connected with lines when the board was found (pattern_was_found != 0).
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntaxpublic static void DrawChessboardCorners(
IInputOutputArray image,
Size patternSize,
IInputArray corners,
bool patternWasFound
)
Public Shared Sub DrawChessboardCorners (
image As IInputOutputArray,
patternSize As Size,
corners As IInputArray,
patternWasFound As Boolean
)
public:
static void DrawChessboardCorners(
IInputOutputArray^ image,
Size patternSize,
IInputArray^ corners,
bool patternWasFound
)
static member DrawChessboardCorners :
image : IInputOutputArray *
patternSize : Size *
corners : IInputArray *
patternWasFound : bool -> unit
Parameters
- image
- Type: Emgu.CVIInputOutputArray
The destination image; it must be 8-bit color image - patternSize
- Type: System.DrawingSize
The number of inner corners per chessboard row and column - corners
- Type: Emgu.CVIInputArray
The array of corners detected - patternWasFound
- Type: SystemBoolean
Indicates whether the complete board was found (!=0) or not (=0). One may just pass the return value cvFindChessboardCorners here.
See Also