C# Класс Emgu.CV.Features2D.MSERDetector

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
GetMSERParameters ( ) : MCvMSERParams

Get the MSER parameters

MSERDetector ( ) : System

Create the default MSER detector

MSERDetector ( int delta, int maxArea, int minArea, float maxVariation, float minDiversity, int maxEvolution, double areaThreshold, double minMargin, int edgeBlurSize ) : System

Create a MSER detector using the specific parameters

Защищенные методы

Метод Описание
DisposeObject ( ) : void

Release the unmanaged memory associated with this detector.

Описание методов

DisposeObject() защищенный Метод

Release the unmanaged memory associated with this detector.
protected DisposeObject ( ) : void
Результат void

GetMSERParameters() публичный Метод

Get the MSER parameters
public GetMSERParameters ( ) : MCvMSERParams
Результат Emgu.CV.Structure.MCvMSERParams

MSERDetector() публичный Метод

Create the default MSER detector
public MSERDetector ( ) : System
Результат System

MSERDetector() публичный Метод

Create a MSER detector using the specific parameters
public MSERDetector ( int delta, int maxArea, int minArea, float maxVariation, float minDiversity, int maxEvolution, double areaThreshold, double minMargin, int edgeBlurSize ) : System
delta int Use 5 as defalut. In the code, it compares (size_{i}-size_{i-delta})/size_{i-delta}
maxArea int Use 60 as default. Prune the area which bigger than max_area
minArea int Use 14400 as default. Prune the area which smaller than min_area
maxVariation float Use .25f as default. Prune the area have simliar size to its children
minDiversity float Use .2f as default. Trace back to cut off mser with diversity < min_diversity
maxEvolution int Use 200 as default. For color image, the evolution steps
areaThreshold double Use 1.01 as default. The area threshold to cause re-initialize
minMargin double Use 0.003 as default. Ignore too small margin
edgeBlurSize int Use 5 as default. The aperture size for edge blur
Результат System