Show / Hide Table of Contents

Enum ChessboardFlags

Various operation flags for cvFindChessboardCorners

Namespace: OpenCvSharp
Assembly: OpenCvSharp.dll
Syntax
public enum ChessboardFlags

Fields

Name Description
Accuracy

Up sample input image to improve sub-pixel accuracy due to aliasing effects. This should be used if an accurate camera calibration is required.

AdaptiveThresh

Use adaptive thresholding to convert the image to black-n-white, rather than a fixed threshold level (computed from the average image brightness).

Exhaustive

Run an exhaustive search to improve detection rate.

FastCheck

Run 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

Use additional criteria (like contour area, perimeter, square-like shape) to filter out false quads that are extracted at the contour retrieval stage.

None
NormalizeImage

Normalize the image using cvNormalizeHist before applying fixed or adaptive thresholding.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX