Enum ChessboardFlags
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Various operation flags for cvFindChessboardCorners
[Flags]
public enum ChessboardFlags
Fields
Accuracy = 32Up sample input image to improve sub-pixel accuracy due to aliasing effects. This should be used if an accurate camera calibration is required.
AdaptiveThresh = 1Use adaptive thresholding to convert the image to black-n-white, rather than a fixed threshold level (computed from the average image brightness).
Exhaustive = 16Run an exhaustive search to improve detection rate.
FastCheck = 8Run a fast check on the image that looks for chessboard corners, and shortcut the call if none is found. This can drastically speed up the call in the degenerate condition when no chessboard is observed.
FilterQuads = 4Use additional criteria (like contour area, perimeter, square-like shape) to filter out false quads that are extracted at the contour retrieval stage.
None = 0NormalizeImage = 2Normalize the image using cvNormalizeHist before applying fixed or adaptive thresholding.