C# 클래스 Emgu.CV.Features2D.MSERDetector

파일 보기 프로젝트 열기: fajoy/RTSPExample 1 사용 예제들

공개 메소드들

메소드 설명
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