Table of Contents

Class StarDetector

Namespace
OpenCvSharp.XFeatures2D
Assembly
OpenCvSharp.dll

The "Star" Detector

public class StarDetector : Feature2D, IDisposable
Inheritance
StarDetector
Implements
Inherited Members

Properties

LineThresholdBinarized

Line threshold used for the binarized line filtering.

public int LineThresholdBinarized { get; set; }

Property Value

int

LineThresholdProjected

Line threshold used for the projected line filtering.

public int LineThresholdProjected { get; set; }

Property Value

int

MaxSize

Maximum size of the features.

public int MaxSize { get; set; }

Property Value

int

ResponseThreshold

Response threshold.

public int ResponseThreshold { get; set; }

Property Value

int

SuppressNonmaxSize

Non-maximum suppression size.

public int SuppressNonmaxSize { get; set; }

Property Value

int

Methods

Create(int, int, int, int, int)

Constructor

public static StarDetector Create(int maxSize = 45, int responseThreshold = 30, int lineThresholdProjected = 10, int lineThresholdBinarized = 8, int suppressNonmaxSize = 5)

Parameters

maxSize int
responseThreshold int
lineThresholdProjected int
lineThresholdBinarized int
suppressNonmaxSize int

Returns

StarDetector