FASTDetector

FAST corner detector utility.

Constructors

this
this(uint threshold = 100, Type type = Type.FAST_9, int flags = 0)

Default constructor.

Members

Enums

Type
enum Type

Pixel neighborhood type, described in the paper.

Functions

detect
Feature[] detect(in Image image, size_t count = 0)

Detect features for given image.

flags
auto flags()

Algorithm flags.

threshold
auto threshold()

Threshold for corner detection.

threshold
auto threshold(uint value)

Threshold value setter.

type
auto type()
auto type(Type type)

Type of the detector.

Static variables

PERFORM_NON_MAX_SUPRESSION
auto PERFORM_NON_MAX_SUPRESSION;

Should the non-maximum suppression be performed with the detection.

SORT_OUT_FEATURES_BY_SCORE
auto SORT_OUT_FEATURES_BY_SCORE;

Should the features be sorted by score at the output.

Meta