Enum ChessboardCalibrationFlags
Specifies available operation flags for finding chessboard corners.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum ChessboardCalibrationFlags : int
Fields
Name | Description |
---|---|
AdaptiveThreshold | Specifies that adaptive thresholding should be used to convert the image to black and white, rather than a fixed threshold level (computed from the average image brightness). |
FastCheck | Specifies that a fast check should be run on the image that looks for chessboard corners, and shortcuts the call if none is found. This can drastically speed up the call in the degenerate condition when no chessboard is observed. |
FilterQuads | Specifies that additional criteria (like contour area, perimeter, square-like shape) should be used to filter out false quads extracted at the contour retrieval stage. |
None | Specifies that no operation flags are active. |
NormalizeImage | Specifies the image gamma should be normalized with EqualizeHist(Arr, Arr) before applying fixed or adaptive thresholding. |